source: basicnet/netprogs/ncftp.xml@ 1970f00

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 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 1970f00 was 6f8ecea, checked in by Dan Nichilson <dnicholson@…>, 17 years ago

Updated to ncftp-3.2.1

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

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