Changeset d50ef4c5 for basicnet/netprogs


Ignore:
Timestamp:
09/04/2003 10:39:32 PM (21 years ago)
Author:
Larry Lawrence <larry@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 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/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, v5_0, v5_0-pre1, v5_1, v5_1-pre1, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
Children:
035b717
Parents:
d9d389b5
Message:

more gnome, DJ's patch, Igor's patch

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

Location:
basicnet/netprogs/ncpfs
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • basicnet/netprogs/ncpfs/ncpfs-config.xml

    rd9d389b5 rd50ef4c5  
    99
    1010<para>A config file <filename>~/.nwclient</filename> should be placed
    11 in each user's home directory that intends to use ncpfs.
     11in the home directory of each user that intends to use ncpfs.
    1212The permissions on this file should be set to 600, for obvious security
    13 reasons.  The configuration file should contain a sinlge line
     13reasons.  The configuration file should contain a single line
    1414per server that the user will use.  Each line should contain
    15 the sever name, the user name, and optionally the password.  Below is a
     15the server name, the user name, and optionally the password.  Below is a
    1616sample <filename>.nwclient</filename> file.</para>
    1717
     
    3939connection to the Novell server.  Mounting each individual volume
    4040separately would be unwise, as mounting all volumes on a server
    41 under one mount point, uses only one client connection.</para>
     41under one mount point uses only one client connection.</para>
    4242
    4343<para>If you need to set up the IPX protocol at boot, you can create the
     
    5454
    5555echo "Setting up the IPX protocol on eth0..."
    56 /sbin/ipx_interface add eth0 802.2 &&
    57 /sbin/ipx_configure --auto_interface=on --auto_primary=on
     56/bin/ipx_interface add eth0 802.2 &amp;&amp;
     57/bin/ipx_configure --auto_interface=on --auto_primary=on
    5858evaluate_retval
    5959
     
    6868
    6969echo "Stoping IPX on the eth0 interface..."
    70 /usr/bin/ipx_configure --auto_interface=off --auto_primary=off &&
    71 /usr/bin/ipx_interface del eth0 802.2
     70/bin/ipx_configure --auto_interface=off --auto_primary=off &amp;&amp;
     71/bin/ipx_interface del eth0 802.2
    7272evaluate_retval
    7373
  • basicnet/netprogs/ncpfs/ncpfs-exp.xml

    rd9d389b5 rd50ef4c5  
    22<title>Command explanations</title>
    33
    4 <para>
    5 <userinput>./configure --prefix=/usr --mandir=/usr/share/man</userinput>:
    6 installs the binaries and libs to the <filename>/usr</filename> directory
    7 and places the man files in <filename>/usr/share/man</filename>.</para>
    8 <para><userinput>make install-dev</userinput>: Installs the header files
    9 to <filename>/usr/include</filename>.</para>
    10 <para>If you do not need to use the IPX protocol, or you use a different
    11 IPX package, you can optionally pass <userinput> --disable-ipx </userinput>
     4<para><userinput>--prefix=""</userinput>:
     5installs binaries on the root partition so that they are availible at
     6boot time.  This may not be ideal for all systems.  If
     7<filename>/usr</filename> is mounted locally,
     8<userinput>--prefix=/usr</userinput> may be a better option.</para>
     9
     10<para><userinput>--includedir=/usr/include</userinput>: Tells configure
     11to look in <filename>/usr/include</filename> for header files.  It also
     12tells make to install ncpfs's headers here.</para>
     13
     14<para><userinput>--mandir=/usr/share/man</userinput>:  installs the man
     15pages in the correct location.</para>
     16
     17<para><userinput>--datadir=/usr/share</userinput>:  correctly installs the
     18locale files to <filename>/usr/share/</filename>.</para>
     19
     20<para>Note:  If you do not need to use the IPX protocol, or you use a different
     21IPX package, you can optionally pass <userinput> --disable-ipx </userinput>
    1222and/or <userinput> --disable-ipx-tools </userinput> to the configure
    1323script to disable these options.</para>
  • basicnet/netprogs/ncpfs/ncpfs-inst.xml

    rd9d389b5 rd50ef4c5  
    44<para>Install ncpfs by running the following commands:</para>
    55
    6 <para><screen><userinput>./configure --prefix=/usr --mandir=/usr/share/man &&
    7 make &&
    8 make install &&
     6<para><screen><userinput>./configure --prefix=/usr --inxludedir=/usr/include \
     7    --mandir=/usr/share/man --datadir=/usr/share &amp;&amp;
     8make &amp;&amp;
     9make install &amp;&amp;
    910make install-dev</userinput></screen></para>
    1011
  • basicnet/netprogs/ncpfs/ncpfs.ent

    rd9d389b5 rd50ef4c5  
    55<!ENTITY ncpfs-desc SYSTEM "ncpfs-desc.xml">
    66<!ENTITY ncpfs-config SYSTEM "ncpfs-config.xml">
    7 <!ENTITY ncpfs-buildsize "18 MB">
     7<!ENTITY ncpfs-buildsize "40 MB">
    88<!ENTITY ncpfs-version "2.2.3">
    99<!ENTITY ncpfs-download-http
Note: See TracChangeset for help on using the changeset viewer.