Changeset 2da087b
- Timestamp:
- 09/17/2003 03:38:21 PM (20 years ago)
- Branches:
- 10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 6.0, 6.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/inkscape-core-mods, ken/tuningfonts, krejzi/svn, lazarus, lxqt, nosym, perl-modules, plabs/python-mods, qt5new, renodr/vulkan-addition, systemd-11177, systemd-13485, trunk, upgradedb, v5_0, v5_0-pre1, v5_1, v5_1-pre1, xry111/intltool, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
- Children:
- 5bc2a01
- Parents:
- b152f10
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
basicnet/netprogs/ncftp/ncftp-config.xml
rb152f10 r2da087b 1 1 <sect2> 2 <title>Configuring ncftp</title>2 <title>Configuring <application>ncftp</application></title> 3 3 4 4 <sect3><title>Config files</title> … … 9 9 <sect3><title>Configuration Information</title> 10 10 11 <para>Most ncftp configuration is done while in the program and the12 configuration files are dealt with automatically. One exception to this 13 is <filename>~/.ncftp/prefs_v3</filename>. There are various options to 14 alter in there, including:</para>11 <para>Most <application>ncftp</application> configuration is done while in the 12 program and the configuration files are dealt with automatically. One 13 exception to this is <filename>~/.ncftp/prefs_v3</filename>. There are various 14 options to alter in there, including:</para> 15 15 16 <para><userinput>yes-i-know-about-NcFTPd=yes</userinput> : This disables 17 the splash screen advertising the NcFTPd server.</para> 16 <para><screen><userinput>yes-i-know-about-NcFTPd=yes</userinput></screen> : 17 This disables the splash screen advertising the 18 <application>NcFTPd</application> server.</para> 18 19 19 <para>There are other options in the <filename>prefs_v3</filename> file. Most of these are 20 self-explanatory.</para> 20 <para>There are other options in the <filename>prefs_v3</filename> file. Most of these are self-explanatory.</para> 21 21 </sect3> 22 22 -
basicnet/netprogs/ncftp/ncftp-desc.xml
rb152f10 r2da087b 2 2 <title>Contents</title> 3 3 4 <para>The ncftp package contains <userinput>ncftp, ncftpbatch, 5 ncftpbookmarks, ncftpget, ncftpls, ncftpput</userinput> 6 and <userinput>ncftpspooler</userinput>.</para> 4 <para>The ncftp package contains <command>ncftp</command>, <command>ncftpbatch 5 </command>, <command>ncftpbookmarks</command>, 6 <command>ncftpget</command>, <command>ncftpls</command>, 7 <command>ncftpput</command> and <command>ncftpspooler</command>.</para> 7 8 </sect2> 8 9 … … 13 14 14 15 <sect3><title>ncftpbatch</title> 15 <para>Individual batch FTPjob processor.</para></sect3>16 <para>Individual batch <acronym>FTP</acronym> job processor.</para></sect3> 16 17 17 18 <sect3><title>ncftpbookmarks</title> 18 <para>NcFTP Bookmark Editor (NCurses-based).</para></sect3> 19 <para><application>NcFTP</application> Bookmark Editor 20 (<application>NCurses</application>-based).</para></sect3> 19 21 20 22 <sect3><title>ncftpget</title> … … 28 30 29 31 <sect3><title>ncftpspooler</title> 30 <para>Global batch FTPjob processor daemon.</para></sect3>32 <para>Global batch <acronym>FTP</acronym> job processor daemon.</para></sect3> 31 33 32 34 </sect2> -
basicnet/netprogs/ncftp/ncftp-exp.xml
rb152f10 r2da087b 2 2 <title>Command explanations</title> 3 3 4 <para><screen>< userinput>cd libncftp &&4 <para><screen><command>cd libncftp && 5 5 make shared && 6 make soinstall</ userinput></screen>6 make soinstall</command></screen> 7 7 These commands make and install the dynamic library libncftp which is then used to link against when compiling the main program.</para> 8 8 -
basicnet/netprogs/ncftp/ncftp-inst.xml
rb152f10 r2da087b 1 1 <sect2> 2 <title>Installation of ncftp</title>2 <title>Installation of <application>ncftp</application></title> 3 3 4 <para>There are two ways to build ncftp. The first (and optimal) way,5 builds most of the functionality as a shared library and then builds and 6 installs the program linked against this library. The second method 7 simply links all of the functionality into the binary statically. This4 <para>There are two ways to build <application>ncftp</application>. The first 5 (and optimal) way, builds most of the functionality as a shared library and 6 then builds and installs the program linked against this library. The second 7 method simply links all of the functionality into the binary statically. This 8 8 doesn't make the dynamic library available for linking by other 9 9 applications. You need to choose which method best suits you. Note 10 10 that the second method does <emphasis>not</emphasis> create an entirely 11 statically linked binary; only the libncftp parts are statically linked 12 in, in this case. Be aware that building and using the shared library is 13 covered by the Clarified Artistic License; however, developing applications 14 that utilize the shared library is subject to a different license.</para> 11 statically linked binary; only the <filename>libncftp</filename> parts are 12 statically linked in, in this case. Be aware that building and using the shared 13 library is covered by the Clarified Artistic License; however, developing 14 applications that utilize the shared library is subject to a different license. 15 </para> 15 16 16 <para>To install ncftp using the first (and optimal) method, run the17 following commands:</para>17 <para>To install <application>ncftp</application> using the first (and optimal) 18 method, run the following commands:</para> 18 19 19 < para><screen><userinput>./configure --prefix=/usr &&20 <screen><userinput><command>./configure --prefix=/usr && 20 21 cd libncftp && 21 22 make shared && … … 23 24 cd .. && 24 25 make && 25 make install</ userinput></screen></para>26 make install</command></userinput></screen> 26 27 27 <para>To install ncftp using the second method (with the libncftp 28 functionality linked in statically) run the following commands:</para> 28 <para>To install <application>ncftp</application> using the second method (with 29 the <filename>libncftp</filename> functionality linked in statically) run the 30 following commands:</para> 29 31 30 < para><screen><userinput>./configure --prefix=/usr &&32 <screen><userinput><command>./configure --prefix=/usr && 31 33 make && 32 make install</ userinput></screen></para>34 make install</command></userinput></screen> 33 35 34 36 </sect2> -
basicnet/netprogs/ncftp/ncftp-intro.xml
rb152f10 r2da087b 1 1 <sect2> 2 <title>Introduction to ncftp</title>2 <title>Introduction to <application>ncftp</application></title> 3 3 4 <screen>Download location (HTTP): <ulink url="&ncftp-download-http;"/> 5 Download location (FTP): <ulink url="&ncftp-download-ftp;"/> 6 Version used: &ncftp-version; 7 Package size: &ncftp-size; 8 Estimated Disk space required: &ncftp-buildsize;</screen> 4 <para>The <application>ncftp</application> package contains a powerful and 5 flexible interface to the Internet standard File Transfer Protocol. It is 6 intended to replace or supplement the stock <command>ftp</command> program. 7 </para> 9 8 10 <para>The ncftp package contains a powerful and flexible interface to 11 the Internet standard File Transfer Protocol. It is intended to replace 12 or supplement the stock ftp program.</para> 9 <sect3><title>Package information</title> 10 <itemizedlist spacing='compact'> 11 <listitem><para>Download (HTTP): <ulink 12 url="&ncftp-download-http;"/></para></listitem> 13 <listitem><para>Download (FTP): <ulink 14 url="&ncftp-download-ftp;"/></para></listitem> 15 <listitem><para>Download size: &ncftp-size;</para></listitem> 16 <listitem><para>Estimated Disk space required: 17 &ncftp-buildsize;</para></listitem> 18 <listitem><para>Estimated build time: 19 &ncftp-time;</para></listitem></itemizedlist> 20 </sect3> 21 22 13 23 14 24 </sect2> -
basicnet/netprogs/ncftp/ncftp.ent
rb152f10 r2da087b 5 5 <!ENTITY ncftp-desc SYSTEM "ncftp-desc.xml"> 6 6 <!ENTITY ncftp-config SYSTEM "ncftp-config.xml"> 7 <!ENTITY ncftp-buildsize " 4.8MB">8 <!ENTITY ncftp-version "3.1. 5">7 <!ENTITY ncftp-buildsize "5.2 MB"> 8 <!ENTITY ncftp-version "3.1.6"> 9 9 <!ENTITY ncftp-download-http ""> 10 <!ENTITY ncftp-download-ftp "ftp://ftp.ncftp.com/ncftp/ncftp-3.1.5-src.tar.bz2"> 11 <!ENTITY ncftp-size "392 KB"> 10 <!ENTITY ncftp-download-ftp "ftp://ftp.ncftp.com/ncftp/ncftp-3.1.6-src.tar.bz2"> 11 <!ENTITY ncftp-size "396 KB"> 12 <!ENTITY ncftp-time "0.26 SBU"> -
index.xml
rb152f10 r2da087b 3 3 "/usr/share/docbook/docbookx.dtd" [ 4 4 5 <!ENTITY version "2003091 6">6 <!ENTITY releasedate "September 1 6th, 2003">5 <!ENTITY version "20030917"> 6 <!ENTITY releasedate "September 17th, 2003"> 7 7 8 8 <!ENTITY % book SYSTEM "book/book.ent"> -
introduction/welcome/changelog.xml
rb152f10 r2da087b 10 10 11 11 <itemizedlist> 12 13 <listitem><para>September 17th, 2003 [larry]: updated to 14 ncftp-3.1.6.</para></listitem> 12 15 13 16 <listitem><para>September 16th, 2003 [larry]: added -
server/other/openssh/openssh-inst.xml
rb152f10 r2da087b 9 9 commands:</para> 10 10 11 < para><screen><userinput><command>mkdir /var/empty &&11 <screen><userinput><command>mkdir /var/empty && 12 12 chown root:sys /var/empty && 13 13 groupadd sshd && 14 useradd - g sshd sshd</command></userinput></screen></para>14 useradd -c 'sshd privsep' -d /var/empty -g sshd -s /bin/false sshd</command></userinput></screen> 15 15 16 16 <para>Install OpenSSH by running the following commands:</para> 17 17 18 < para><screen><userinput><command>./configure --prefix=/usr --sysconfdir=/etc/ssh \18 <screen><userinput><command>./configure --prefix=/usr --sysconfdir=/etc/ssh \ 19 19 --libexecdir=/usr/sbin --with-md5-passwords && 20 20 make && 21 make install </command></userinput></screen> </para>21 make install </command></userinput></screen> 22 22 23 23 </sect2>
Note:
See TracChangeset
for help on using the changeset viewer.