diff options
author | Greg Schafer <greg@linuxfromscratch.org> | 2003-10-09 23:22:07 +0000 |
---|---|---|
committer | Greg Schafer <greg@linuxfromscratch.org> | 2003-10-09 23:22:07 +0000 |
commit | 21ba4e3570c1c2524b0733d492ced9634b259353 (patch) | |
tree | f5124d2e6106d2e29e5b32f79b56a90defabdbd9 /chapter07/network.xml | |
parent | 1a7aecc6119f540e24a4e8da1b583a625b5690c1 (diff) |
Internal markup reworking to fix the extraneous whitespace problem in the "tidy generated" web site pages. Essentially replace all ocurrences of <para><screen> with <screen> (and of course the matching closing tags).
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@2958 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter07/network.xml')
-rw-r--r-- | chapter07/network.xml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/chapter07/network.xml b/chapter07/network.xml index b118be11d..609cf9185 100644 --- a/chapter07/network.xml +++ b/chapter07/network.xml @@ -18,10 +18,10 @@ runlevel directories this machine. This is done by adding the proper values to the /etc/sysconfig/network file by running the following:</para> -<para><screen><userinput>cat >> /etc/sysconfig/network << "EOF"</userinput> +<screen><userinput>cat >> /etc/sysconfig/network << "EOF"</userinput> GATEWAY=192.168.1.2 GATEWAY_IF=eth0 -<userinput>EOF</userinput></screen></para> +<userinput>EOF</userinput></screen> <para>The values for GATEWAY and GATEWAY_IF need to be changed to match your network setup. GATEWAY contains the IP address of the default @@ -45,12 +45,12 @@ update the network_devices by providing it with the new path.</para> <para>Now, new files are created in that directory containing the following. The following command creates a sample ifconfig.eth0 file:</para> -<para><screen><userinput>cat > /etc/sysconfig/network-devices/ifconfig.eth0 << "EOF"</userinput> +<screen><userinput>cat > /etc/sysconfig/network-devices/ifconfig.eth0 << "EOF"</userinput> ONBOOT=yes IP=192.168.1.1 NETMASK=255.255.255.0 BROADCAST=192.168.1.255 -<userinput>EOF</userinput></screen></para> +<userinput>EOF</userinput></screen> <para>Of course, the values of those variables have to be changed in every file to match the proper setup. If the ONBOOT variable is set |