source: basicnet/netprogs/ncftp.xml@ 9d91468a

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 6.2 6.2.0 6.2.0-rc1 6.2.0-rc2 6.3 6.3-rc1 6.3-rc2 6.3-rc3 7.10 7.4 7.5 7.6 7.6-blfs 7.6-systemd 7.7 7.8 7.9 8.0 8.1 8.2 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind gnome kde5-13430 kde5-14269 kde5-14686 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts krejzi/svn lazarus lxqt nosym perl-modules plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition systemd-11177 systemd-13485 trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since 9d91468a was 0aeb696, checked in by Randy McMurchy <randy@…>, 18 years ago

Added a comment to each file that may need a mention of a test suite added to it, this allows closing of bug #1697

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@5951 af4574ff-66df-0310-9fd7-8a98e5e911e0

  • Property mode set to 100644
File size: 9.5 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN"
3 "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
7 <!-- Inserted as a reminder to do this. The mention of a test suite
8 is usually right before the root user installation commands. Please
9 delete these 12 (including one blank) lines after you are done.-->
10
11 <!-- Use one of the two mentions below about a test suite,
12 delete the line that is not applicable. Of course, if the
13 test suite uses syntax other than "make check", revise the
14 line to reflect the actual syntax to run the test suite -->
15
16 <!-- <para>This package does not come with a test suite.</para> -->
17 <!-- <para>To test the results, issue: <command>make check</command>.</para> -->
18
19 <!ENTITY ncftp-download-http "http://gd.tuwien.ac.at/infosys/clients/ftp/ncftp/ncftp-&ncftp-version;-src.tar.bz2">
20 <!-- <!ENTITY ncftp-download-ftp "ftp://ftp.ncftp.com/ncftp/ncftp-&ncftp-version;-src.tar.bz2"> -->
21 <!ENTITY ncftp-download-ftp "ftp://ftp.ncftp.com/ncftp/ncftp-&ncftp-version;-src.tar.bz2">
22 <!ENTITY ncftp-md5sum "66cf8dacec848eb11a70632fe9f21807">
23 <!ENTITY ncftp-size "401 KB">
24 <!ENTITY ncftp-buildsize "9.9 MB">
25 <!ENTITY ncftp-time "0.3 SBU">
26]>
27
28<sect1 id="ncftp" xreflabel="NcFTP-&ncftp-version;">
29 <?dbhtml filename="ncftp.html"?>
30
31 <sect1info>
32 <othername>$LastChangedBy$</othername>
33 <date>$Date$</date>
34 <keywordset>
35 <keyword role="package">ncftp-&ncftp-version;-src.tar</keyword>
36 <keyword role="ftpdir">ncftp</keyword>
37 </keywordset>
38 </sect1info>
39
40<title>NcFTP-&ncftp-version;</title>
41
42 <indexterm zone="ncftp">
43 <primary sortas="a-NcFTP">NcFTP</primary>
44 </indexterm>
45
46 <sect2 role="package">
47 <title>Introduction to NcFTP</title>
48
49 <para>The <application>NcFTP</application> package contains
50 a powerful and flexible interface to the Internet standard File Transfer
51 Protocol. It is intended to replace or supplement the stock
52 <command>ftp</command> program.</para>
53
54 <bridgehead renderas="sect3">Package Information</bridgehead>
55 <itemizedlist spacing="compact">
56 <listitem>
57 <para>Download (HTTP): <ulink url="&ncftp-download-http;"/></para>
58 </listitem>
59 <listitem>
60 <para>Download (FTP): <ulink url="&ncftp-download-ftp;"/></para>
61 </listitem>
62 <listitem>
63 <para>Download MD5 sum: &ncftp-md5sum;</para>
64 </listitem>
65 <listitem>
66 <para>Download size: &ncftp-size;</para>
67 </listitem>
68 <listitem>
69 <para>Estimated disk space required: &ncftp-buildsize;</para>
70 </listitem>
71 <listitem>
72 <para>Estimated build time: &ncftp-time;</para>
73 </listitem>
74 </itemizedlist>
75
76 <para condition="html" role="usernotes">User Notes:
77 <ulink url="&blfs-wiki;/ncftp"/></para>
78
79 </sect2>
80
81 <sect2 role="installation">
82 <title>Installation of NcFTP</title>
83
84 <para>There are two ways to build <application>NcFTP</application>.
85 The first (and optimal) way builds most of the functionality as a shared library
86 and then builds and installs the program linked against this library. The
87 second method simply links all of the functionality into the binary statically.
88 This doesn't make the dynamic library available for linking by other applications.
89 You need to choose which method best suits you. Note that the second method
90 does <emphasis>not</emphasis> create an entirely statically linked binary;
91 only the <filename class="libraryfile">libncftp</filename> parts are statically
92 linked in, in this case. Be aware that building and using the shared library is
93 covered by the Clarified Artistic License; however, developing applications that
94 utilize the shared library is subject to a different license.</para>
95
96 <para>To install <application>NcFTP</application> using the
97 first (and optimal) method, run the following commands:</para>
98
99<screen><userinput>./configure --prefix=/usr &amp;&amp;
100make -C libncftp shared</userinput></screen>
101
102 <para>Now, as the <systemitem class="username">root</systemitem> user:</para>
103
104<screen role='root'><userinput>make -C libncftp soinstall</userinput></screen>
105
106 <para>Again, as an unprivileged user:</para>
107
108<screen><userinput>make</userinput></screen>
109
110 <para>Again, as the <systemitem class="username">root</systemitem> user:</para>
111
112<screen role='root'><userinput>make install</userinput></screen>
113
114 <para>To install <application>NcFTP</application> using the
115 second method (with the <filename class="libraryfile">libncftp</filename>
116 functionality linked in statically) run the following commands:</para>
117
118<screen><userinput>./configure --prefix=/usr &amp;&amp;
119make</userinput></screen>
120
121 <para>Now, as the <systemitem class="username">root</systemitem> user:</para>
122
123<screen role='root'><userinput>make install</userinput></screen>
124
125 </sect2>
126
127 <sect2 role="commands">
128 <title>Command Explanations</title>
129
130 <para><command>make -C ... &amp;&amp; make -C ...</command>:
131 These commands make and install the dynamic library <filename
132 class="libraryfile">libncftp</filename> which is then used to link
133 against when compiling the main program.</para>
134
135 </sect2>
136
137 <sect2 role="configuration">
138 <title>Configuring NcFTP</title>
139
140 <sect3 id="ncftp-config">
141 <title>Config Files</title>
142
143 <para><filename>~/.ncftp/*</filename>; especially
144 <filename>~/.ncftp/prefs_v3</filename></para>
145
146 <indexterm zone="ncftp ncftp-config">
147 <primary sortas="e-AA.ncftp/*">~/.ncftp/*</primary>
148 </indexterm>
149
150 </sect3>
151
152 <sect3>
153 <title>Configuration Information</title>
154
155 <para>Most <application>NcFTP</application> configuration
156 is done while in the program, and the configuration files are dealt with
157 automatically. One exception to this is <filename>~/.ncftp/prefs_v3</filename>.
158 There are various options to alter in there, including:</para>
159
160<screen><literal>yes-i-know-about-NcFTPd=yes</literal></screen>
161
162 <para>This disables the splash screen advertising the
163 <application>NcFTPd</application> server.</para>
164
165 <para>There are other options in the <filename>prefs_v3</filename> file. Most
166 of these are self-explanatory.</para>
167
168 </sect3>
169
170 </sect2>
171
172 <sect2 role="content">
173 <title>Contents</title>
174
175 <segmentedlist>
176 <segtitle>Installed Programs</segtitle>
177 <segtitle>Installed Library</segtitle>
178 <segtitle>Installed Directories</segtitle>
179
180 <seglistitem>
181 <seg>ncftp, ncftpbatch, ncftpbookmarks, ncftpget,
182 ncftpls, ncftpput, and ncftpspooler</seg>
183 <seg>libncftp.so</seg>
184 <seg>None</seg>
185 </seglistitem>
186 </segmentedlist>
187
188 <variablelist>
189 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
190 <?dbfo list-presentation="list"?>
191 <?dbhtml list-presentation="table"?>
192
193 <varlistentry id="ncftp-prog">
194 <term><command>ncftp</command></term>
195 <listitem>
196 <para>is a browser program for File Transfer Protocol.</para>
197 <indexterm zone="ncftp ncftp-prog">
198 <primary sortas="b-ncftp">ncftp</primary>
199 </indexterm>
200 </listitem>
201 </varlistentry>
202
203 <varlistentry id="ncftpbatch">
204 <term><command>ncftpbatch</command></term>
205 <listitem>
206 <para>is an individual batch FTP job processor.</para>
207 <indexterm zone="ncftp ncftpbatch">
208 <primary sortas="b-ncftpbatch">ncftpbatch</primary>
209 </indexterm>
210 </listitem>
211 </varlistentry>
212
213 <varlistentry id="ncftpbookmarks">
214 <term><command>ncftpbookmarks</command></term>
215 <listitem>
216 <para>is the <application>NcFTP</application> Bookmark Editor
217 (<application>NCurses</application>-based).</para>
218 <indexterm zone="ncftp ncftpbookmarks">
219 <primary sortas="b-ncftpbookmarks">ncftpbookmarks</primary>
220 </indexterm>
221 </listitem>
222 </varlistentry>
223
224 <varlistentry id="ncftpget">
225 <term><command>ncftpget</command></term>
226 <listitem>
227 <para>is an internet file transfer program for scripts used to
228 retrieve files.</para>
229 <indexterm zone="ncftp ncftpget">
230 <primary sortas="b-ncftpget">ncftpget</primary>
231 </indexterm>
232 </listitem>
233 </varlistentry>
234
235 <varlistentry id="ncftpls">
236 <term><command>ncftpls</command></term>
237 <listitem>
238 <para>is an internet file transfer program for scripts used to
239 list files.</para>
240 <indexterm zone="ncftp ncftpls">
241 <primary sortas="b-ncftpls">ncftpls</primary>
242 </indexterm>
243 </listitem>
244 </varlistentry>
245
246 <varlistentry id="ncftpput">
247 <term><command>ncftpput</command></term>
248 <listitem>
249 <para>is an internet file transfer program for scripts used to
250 transfer files.</para>
251 <indexterm zone="ncftp ncftpput">
252 <primary sortas="b-ncftpput">ncftpput</primary>
253 </indexterm>
254 </listitem>
255 </varlistentry>
256
257 <varlistentry id="ncftpspooler">
258 <term><command>ncftpspooler</command></term>
259 <listitem>
260 <para>is a global batch FTP job processor daemon.</para>
261 <indexterm zone="ncftp ncftpspooler">
262 <primary sortas="b-ncftpspooler">ncftpspooler</primary>
263 </indexterm>
264 </listitem>
265 </varlistentry>
266
267 </variablelist>
268
269 </sect2>
270
271</sect1>
Note: See TracBrowser for help on using the repository browser.