source: networking/netprogs/ncftp.xml@ 5a38f35

10.1 11.0 11.1 11.2 11.3 12.0 12.1 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts lazarus lxqt plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since 5a38f35 was 78af2ee, checked in by Douglas R. Reno <renodr@…>, 4 years ago

Some tags

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

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