Changeset b5ea3492 for basicnet


Ignore:
Timestamp:
03/21/2004 07:27:22 PM (20 years ago)
Author:
Tushar Teredesai <tushar@…>
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_1, v5_1-pre1, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
Children:
cc265e51
Parents:
f53f1b3c
Message:

The march to lfs-bootscripts begins

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

File:
1 edited

Legend:

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

    rf53f1b3c rb5ea3492  
    4242
    4343<para>If you need to set up the <acronym>IPX</acronym> protocol at boot,
    44 you can create the following scripts.  These scripts assume <acronym>IPX</acronym>
    45 will be set up on <emphasis role="strong">eth0</emphasis>
    46 and the network frame type is 802.2.  You should confirm that these
    47 are the correct settings and adjust as necessary.</para>
     44you can install the
     45<filename>/etc/sysconfig/network-devices/services/ipx</filename>
     46network service script included with the
     47<xref linkend="intro-important-bootscripts"/> package.</para>
    4848
    49 <screen><userinput><command>cat &gt; /etc/sysconfig/network-devices/ifup-ipx0 &lt;&lt; "EOF"</command>
    50 #!/bin/sh
    51 # Begin /etc/sysconfig/network-devices/ifup-ipx0
     49<screen><userinput><command>make install-service-ipx</command></userinput></screen>
    5250
    53 . /etc/sysconfig/rc || exit
    54 . $rc_functions || exit
     51<para>Next install the configurations script,
     52<filename>ifconfig.ipx0</filename>.  The configuration assumes
     53<acronym>IPX</acronym> will be set up on
     54<emphasis role="strong">eth0</emphasis> 
     55and the network frame type is 802.2.  You should confirm that these are
     56the correct settings and adjust as necessary.</para>
    5557
    56 echo "Setting up the IPX protocol on eth0..."
    57 /bin/ipx_interface add eth0 802.2 &amp;&amp;
    58 /bin/ipx_configure --auto_interface=on --auto_primary=on
    59 evaluate_retval
     58<para><emphasis>Note</emphasis>: This will overwrite any existing file.</para>
    6059
    61 # End /etc/sysconfig/network-devices/ifup-ipx0
    62 <command>EOF
    63 cat &gt; /etc/sysconfig/network-devices/ifdown-ipx0 &lt;&lt; "EOF"</command>
    64 #!/bin/sh
    65 # Begin /etc/sysconfig/network-devices/ifdown-ipx0
    66 
    67 . /etc/sysconfig/rc || exit
    68 . $rc_functions || exit
    69 
    70 echo "Stopping IPX on the eth0 interface..."
    71 /bin/ipx_configure --auto_interface=off --auto_primary=off &amp;&amp;
    72 /bin/ipx_interface del eth0 802.2
    73 evaluate_retval
    74 
    75 # End /etc/sysconfig/network-devices/ifdown-ipx0
    76 <command>EOF
    77 echo "ONBOOT=yes" &gt; /etc/sysconfig/network-devices/ifconfig.ipx0
    78 chmod 755 /etc/sysconfig/network-devices/ifup-ipx0
    79 chmod 755 /etc/sysconfig/network-devices/ifdown-ipx0</command></userinput></screen>
     60<screen><userinput><command>cat &gt; /etc/sysconfig/network-devices/ifconfig.ipx0 &lt;&lt; "EOF"</command>
     61ONBOOT=yes
     62SERVICE=ipx
     63IPXDEV=eth0
     64FRAME=802.2
     65<command>EOF</command></userinput></screen>
    8066
    8167</sect3>
Note: See TracChangeset for help on using the changeset viewer.