From b46fa02ee0d9e3ca270951387aefd224f1b06c79 Mon Sep 17 00:00:00 2001 From: Xi Ruoyao Date: Sat, 10 Dec 2022 14:50:10 +0800 Subject: [PATCH 01/10] coreutils: fix a typo --- chapter08/coreutils.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chapter08/coreutils.xml b/chapter08/coreutils.xml index 34a41163e..77c6a7a92 100644 --- a/chapter08/coreutils.xml +++ b/chapter08/coreutils.xml @@ -363,7 +363,7 @@ sed -i 's/"1"/"8"/' /usr/share/man/man8/chroot.8 date - Displays the current dae and time in the given format, or sets the + Displays the current date and time in the given format, or sets the system date and time date From daad59ec7b7e972ed53be4a79913508c1d749095 Mon Sep 17 00:00:00 2001 From: David Bryant Date: Sat, 10 Dec 2022 06:58:31 -0600 Subject: [PATCH 02/10] Improved the description of "cmp". --- chapter08/diffutils.xml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/chapter08/diffutils.xml b/chapter08/diffutils.xml index 8889077d5..2ffb9fa8c 100644 --- a/chapter08/diffutils.xml +++ b/chapter08/diffutils.xml @@ -79,8 +79,7 @@ cmp - Compares two files and reports whether or in which bytes they - differ + Compares two files and reports any differences byte by byte cmp From 2da001c127fdb9348cfd63ff75d87b156315e4dd Mon Sep 17 00:00:00 2001 From: David Bryant Date: Sat, 10 Dec 2022 11:37:17 -0600 Subject: [PATCH 03/10] Clarified the description of what the programs in this package do. Added a note about xargs. Corrected English idiom. --- chapter08/findutils.xml | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/chapter08/findutils.xml b/chapter08/findutils.xml index c37f3aab0..c12452668 100644 --- a/chapter08/findutils.xml +++ b/chapter08/findutils.xml @@ -23,10 +23,12 @@ - <para>The Findutils package contains programs to find files. These programs - are provided to recursively search through a directory tree and to + <para>The Findutils package contains programs to find files. Programs + are provided to search through all the files in a directory tree and to create, maintain, and search a database (often faster than the recursive - find, but is unreliable if the database has not been recently updated).</para> + find, but unreliable unless the database has been updated recently). + Findutils also supplies the <command>xargs</command> program, which + can be used to run a specified command on each file selected by a search.</para> <segmentedlist> <segtitle>&buildtime;</segtitle> @@ -63,9 +65,9 @@ esac</userinput></screen> <varlistentry> <term><parameter>--localstatedir</parameter></term> <listitem> - <para>This option changes the location of the <command>locate</command> - database to be in <filename class="directory">/var/lib/locate</filename>, - which is FHS-compliant.</para> + <para>This option moves the <command>locate</command> + database to <filename class="directory">/var/lib/locate</filename>, + which is the FHS-compliant location.</para> </listitem> </varlistentry> From 9729cec83d91ef8d4027179a36c9381a9e64c96d Mon Sep 17 00:00:00 2001 From: David Bryant <davidbryant@gvtc.com> Date: Sat, 10 Dec 2022 12:56:35 -0600 Subject: [PATCH 04/10] Corrected description of what the package does: groff processes both text and images. Patched English idiom. Added a little information about Pinyin (Chinese spelled like English) and grap (an old Unix command for creating graphs). --- chapter08/groff.xml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/chapter08/groff.xml b/chapter08/groff.xml index 64739ac67..1b0870d9d 100644 --- a/chapter08/groff.xml +++ b/chapter08/groff.xml @@ -24,7 +24,7 @@ <title/> <para>The Groff package contains programs for processing and formatting - text.</para> + text and images.</para> <segmentedlist> <segtitle>&buildtime;</segtitle> @@ -168,7 +168,7 @@ <varlistentry id="gperl"> <term><command>gperl</command></term> <listitem> - <para>Preprocesor for groff, allowing addition of perl code + <para>Preprocesor for groff, allowing the insertion of perl code into groff files</para> <indexterm zone="ch-system-groff gperl"> <primary sortas="b-gperl">gperl</primary> @@ -179,8 +179,8 @@ <varlistentry id="gpinyin"> <term><command>gpinyin</command></term> <listitem> - <para>Preprocesor for groff, allowing addition of Chinese - European-like language Pinyin into groff files.</para> + <para>Preprocesor for groff, allowing the insertion of Pinyin + (Mandarin Chinese spelled with the Roman alphabet) into groff files.</para> <indexterm zone="ch-system-groff gpinyin"> <primary sortas="b-gpinyin">gpinyin</primary> </indexterm> @@ -190,7 +190,8 @@ <varlistentry id="grap2graph"> <term><command>grap2graph</command></term> <listitem> - <para>Converts a grap diagram into a cropped bitmap image</para> + <para>Converts a grap program file into a cropped bitmap image + (grap is an old Unix programming language for creating diagrams)</para> <indexterm zone="ch-system-groff grap2graph"> <primary sortas="b-grap2graph">grap2graph</primary> </indexterm> @@ -211,7 +212,7 @@ <term><command>grodvi</command></term> <listitem> <para>A driver for <command>groff</command> that produces TeX dvi - format</para> + format output files</para> <indexterm zone="ch-system-groff grodvi"> <primary sortas="b-grodvi">grodvi</primary> </indexterm> From abc36486d00cd6f16e3fc17764bfa0f951212aef Mon Sep 17 00:00:00 2001 From: David Bryant <davidbryant@gvtc.com> Date: Sat, 10 Dec 2022 14:56:15 -0600 Subject: [PATCH 05/10] Clarified directions in re: UEFI. Tweaked verbiage to make it more idiomatic. Clarified meaning of configure options. Made several minor revisions in program descriptions to improve readability. Added a little explanatory material. Changed imperative mood to indicative mood where that was appropriate. --- chapter08/grub.xml | 52 ++++++++++++++++++++++++---------------------- 1 file changed, 27 insertions(+), 25 deletions(-) diff --git a/chapter08/grub.xml b/chapter08/grub.xml index 08d2ac175..831041635 100644 --- a/chapter08/grub.xml +++ b/chapter08/grub.xml @@ -44,9 +44,9 @@ <para> If your system has UEFI support and you wish to boot LFS with UEFI, you can skip this package in LFS, - and install GRUB with UEFI support (and its dependencies) following - <ulink url="&blfs-book;postlfs/grub-efi.html">the BLFS page</ulink> - at the end of this chapter. + and install GRUB with UEFI support (and its dependencies) by following + the instructions on + <ulink url="&blfs-book;postlfs/grub-efi.html">the BLFS page</ulink>. </para> </note> @@ -56,9 +56,9 @@ <screen><userinput remap='pre'>unset {C,CPP,CXX,LD}FLAGS</userinput></screen> <para>Don't try <quote>tuning</quote> this package with custom - compilation flags: this package is a bootloader, with low-level - operations in the source code which is likely to be broken by some - aggressive optimizations.</para> + compilation flags. This package is a bootloader. The low-level + operations in the source code may be broken by + aggressive optimization.</para> </warning> <para>Prepare GRUB for compilation:</para> @@ -75,7 +75,7 @@ <term><parameter>--disable-werror</parameter></term> <listitem> <para>This allows the build to complete with warnings introduced - by more recent Flex versions.</para> + by more recent versions of Flex.</para> </listitem> </varlistentry> @@ -83,7 +83,7 @@ <term><parameter>--disable-efiemu</parameter></term> <listitem> <para>This option minimizes what is built by disabling a feature and - testing programs not needed for LFS.</para> + eliminating some test programs not needed for LFS.</para> </listitem> </varlistentry> @@ -102,7 +102,7 @@ <screen><userinput remap="install">make install mv -v /etc/bash_completion.d/grub /usr/share/bash-completion/completions</userinput></screen> - <para>Using GRUB to make your LFS system bootable will be discussed in + <para>Making your LFS system bootable with GRUB will be discussed in <xref linkend="ch-bootable-grub"/>.</para> </sect2> @@ -138,7 +138,7 @@ mv -v /etc/bash_completion.d/grub /usr/share/bash-completion/completions</userin <varlistentry id="grub-bios-setup"> <term><command>grub-bios-setup</command></term> <listitem> - <para>Is a helper program for grub-install</para> + <para>Is a helper program for <command>grub-install</command></para> <indexterm zone="ch-system-grub grub-bios-setup"> <primary sortas="b-grub-bios-setup">grub-bios-setup</primary> </indexterm> @@ -148,7 +148,7 @@ mv -v /etc/bash_completion.d/grub /usr/share/bash-completion/completions</userin <varlistentry id="grub-editenv"> <term><command>grub-editenv</command></term> <listitem> - <para>A tool to edit the environment block</para> + <para>Is a tool to edit the environment block</para> <indexterm zone="ch-system-grub grub-editenv"> <primary sortas="b-grub-editenv">grub-editenv</primary> </indexterm> @@ -158,7 +158,7 @@ mv -v /etc/bash_completion.d/grub /usr/share/bash-completion/completions</userin <varlistentry id="grub-file"> <term><command>grub-file</command></term> <listitem> - <para>Checks if FILE is of the specified type.</para> + <para>Checks to see if the given file is of the specified type</para> <indexterm zone="ch-system-grub grub-file"> <primary sortas="b-grub-file">grub-file</primary> </indexterm> @@ -168,7 +168,7 @@ mv -v /etc/bash_completion.d/grub /usr/share/bash-completion/completions</userin <varlistentry id="grub-fstest"> <term><command>grub-fstest</command></term> <listitem> - <para>Tool to debug the filesystem driver</para> + <para>Is a tool to debug the filesystem driver</para> <indexterm zone="ch-system-grub grub-fstest"> <primary sortas="b-grub-fstest">grub-fstest</primary> </indexterm> @@ -178,7 +178,7 @@ mv -v /etc/bash_completion.d/grub /usr/share/bash-completion/completions</userin <varlistentry id="grub-glue-efi"> <term><command>grub-glue-efi</command></term> <listitem> - <para>Glue 32-bit and 64-bit binary into Apple universal one.</para> + <para>Glues 32-bit and 64-bit binaries into a single file (for Apple machines)</para> <indexterm zone="ch-system-grub grub-glue-efi"> <primary sortas="b-grub-glue-efi">grub-glue-efi</primary> </indexterm> @@ -188,7 +188,7 @@ mv -v /etc/bash_completion.d/grub /usr/share/bash-completion/completions</userin <varlistentry id="grub-install"> <term><command>grub-install</command></term> <listitem> - <para>Install GRUB on your drive</para> + <para>Installs GRUB on your drive</para> <indexterm zone="ch-system-grub grub-install"> <primary sortas="b-grub-install">grub-install</primary> </indexterm> @@ -198,7 +198,7 @@ mv -v /etc/bash_completion.d/grub /usr/share/bash-completion/completions</userin <varlistentry id="grub-kbdcomp"> <term><command>grub-kbdcomp</command></term> <listitem> - <para>Script that converts an xkb layout into one recognized by + <para>Is a script that converts an xkb layout into one recognized by GRUB</para> <indexterm zone="ch-system-grub grub-kbdcomp"> <primary sortas="b-grub-kbdcomp">grub-kbdcomp</primary> @@ -209,7 +209,8 @@ mv -v /etc/bash_completion.d/grub /usr/share/bash-completion/completions</userin <varlistentry id="grub-macbless"> <term><command>grub-macbless</command></term> <listitem> - <para>Mac-style bless on HFS or HFS+ files</para> + <para>Is the Mac-style bless for HFS or HFS+ files (<command>bless</command> + is peculiar to Apple machiines; it makes a device bootable)</para> <indexterm zone="ch-system-grub grub-macbless"> <primary sortas="b-grub-macbless">grub-macbless</primary> </indexterm> @@ -230,7 +231,7 @@ mv -v /etc/bash_completion.d/grub /usr/share/bash-completion/completions</userin <varlistentry id="grub-mkconfig"> <term><command>grub-mkconfig</command></term> <listitem> - <para>Generate a grub config file</para> + <para>Generates a <filename>grub.cfg</filename> file</para> <indexterm zone="ch-system-grub grub-mkconfig"> <primary sortas="b-grub-mkconfig">grub-mkconfig</primary> </indexterm> @@ -240,7 +241,7 @@ mv -v /etc/bash_completion.d/grub /usr/share/bash-completion/completions</userin <varlistentry id="grub-mkimage"> <term><command>grub-mkimage</command></term> <listitem> - <para>Make a bootable image of GRUB</para> + <para>Makes a bootable image of GRUB</para> <indexterm zone="ch-system-grub grub-mkimage"> <primary sortas="b-grub-mkimage">grub-mkimage</primary> </indexterm> @@ -291,7 +292,8 @@ mv -v /etc/bash_completion.d/grub /usr/share/bash-completion/completions</userin <varlistentry id="grub-mkrescue"> <term><command>grub-mkrescue</command></term> <listitem> - <para>Make a bootable image of GRUB suitable for a floppy disk or CDROM/DVD</para> + <para>Makes a bootable image of GRUB suitable for a floppy disk, + CDROM/DVD, or a USB drive</para> <indexterm zone="ch-system-grub grub-mkrescue"> <primary sortas="b-grub-mkrescue">grub-mkrescue</primary> </indexterm> @@ -311,7 +313,7 @@ mv -v /etc/bash_completion.d/grub /usr/share/bash-completion/completions</userin <varlistentry id="grub-ofpathname"> <term><command>grub-ofpathname</command></term> <listitem> - <para>Is a helper program that prints the path of a GRUB device</para> + <para>Is a helper program that prints the path to a GRUB device</para> <indexterm zone="ch-system-grub grub-ofpathname"> <primary sortas="b-grub-ofpathname">grub-ofpathname</primary> </indexterm> @@ -321,7 +323,7 @@ mv -v /etc/bash_completion.d/grub /usr/share/bash-completion/completions</userin <varlistentry id="grub-probe"> <term><command>grub-probe</command></term> <listitem> - <para>Probe device information for a given path or device</para> + <para>Probes device information for a given path or device</para> <indexterm zone="ch-system-grub grub-probe"> <primary sortas="b-grub-probe">grub-probe</primary> </indexterm> @@ -341,7 +343,7 @@ mv -v /etc/bash_completion.d/grub /usr/share/bash-completion/completions</userin <varlistentry id="grub-render-label"> <term><command>grub-render-label</command></term> <listitem> - <para>Render Apple .disk_label for Apple Macs</para> + <para>Renders Apple .disk_label for Apple Macs</para> <indexterm zone="ch-system-grub grub-render-label"> <primary sortas="b-grub-render-label">grub-render-label</primary> </indexterm> @@ -351,7 +353,7 @@ mv -v /etc/bash_completion.d/grub /usr/share/bash-completion/completions</userin <varlistentry id="grub-script-check"> <term><command>grub-script-check</command></term> <listitem> - <para>Checks GRUB configuration script for syntax errors</para> + <para>Checks the GRUB configuration script for syntax errors</para> <indexterm zone="ch-system-grub grub-script-check"> <primary sortas="b-grub-script-check">grub-script-check</primary> </indexterm> @@ -381,7 +383,7 @@ mv -v /etc/bash_completion.d/grub /usr/share/bash-completion/completions</userin <varlistentry id="grub-syslinux2cfg"> <term><command>grub-syslinux2cfg</command></term> <listitem> - <para>Transform a syslinux config file into grub.cfg format</para> + <para>Transforms a syslinux config file into grub.cfg format</para> <indexterm zone="ch-system-grub grub-syslinux2cfg"> <primary sortas="b-grub-syslinux2cfg">grub-syslinux2cfg</primary> </indexterm> From 85064a128bb2d96019bb4192c7a10c066e359f58 Mon Sep 17 00:00:00 2001 From: Xi Ruoyao <xry111@xry111.site> Date: Sun, 11 Dec 2022 16:33:44 +0800 Subject: [PATCH 06/10] grub: fix a typo --- chapter08/grub.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chapter08/grub.xml b/chapter08/grub.xml index 831041635..316c1f2ac 100644 --- a/chapter08/grub.xml +++ b/chapter08/grub.xml @@ -210,7 +210,7 @@ mv -v /etc/bash_completion.d/grub /usr/share/bash-completion/completions</userin <term><command>grub-macbless</command></term> <listitem> <para>Is the Mac-style bless for HFS or HFS+ files (<command>bless</command> - is peculiar to Apple machiines; it makes a device bootable)</para> + is peculiar to Apple machines; it makes a device bootable)</para> <indexterm zone="ch-system-grub grub-macbless"> <primary sortas="b-grub-macbless">grub-macbless</primary> </indexterm> From 2fe0fd1eb2f6751d14db3c2bc6bf21841d36bf9d Mon Sep 17 00:00:00 2001 From: Xi Ruoyao <xry111@xry111.site> Date: Sun, 11 Dec 2022 16:35:41 +0800 Subject: [PATCH 07/10] grub: HFS and HFS+ are file systems, not files --- chapter08/grub.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chapter08/grub.xml b/chapter08/grub.xml index 316c1f2ac..04fbef91b 100644 --- a/chapter08/grub.xml +++ b/chapter08/grub.xml @@ -209,7 +209,7 @@ mv -v /etc/bash_completion.d/grub /usr/share/bash-completion/completions</userin <varlistentry id="grub-macbless"> <term><command>grub-macbless</command></term> <listitem> - <para>Is the Mac-style bless for HFS or HFS+ files (<command>bless</command> + <para>Is the Mac-style bless for HFS or HFS+ file systems (<command>bless</command> is peculiar to Apple machines; it makes a device bootable)</para> <indexterm zone="ch-system-grub grub-macbless"> <primary sortas="b-grub-macbless">grub-macbless</primary> From f07d91ba37cc22006413e80eefdc8d9a4b72b36b Mon Sep 17 00:00:00 2001 From: David Bryant <davidbryant@gvtc.com> Date: Sun, 11 Dec 2022 16:29:49 -0600 Subject: [PATCH 08/10] Corrected idiom in section about "arpd". Corrected spelling of "front end" -- it's twp words, not one. Changed square brackets to parentheses; square brackets should only be used to delimit editorial remarks. Removed one definite article referring to the plural; "the" implies a single object. Changed "amount" to "number". In English, an amount refers to a continuous quantity, while a number refers to discrete objects (like networking packetts). Added a qualifier in the description of "ip": the list of commands is not exhaustive. Modified a few program descriptons to improve consistency of style. Changed QOS and COS to QoS and CoS after researching these abbreviations on the internet. "Quality of Service" and "Class of Service" appear, to me, to be the most common way of writing these phrases. --- chapter08/iproute2.xml | 47 +++++++++++++++++++++--------------------- 1 file changed, 24 insertions(+), 23 deletions(-) diff --git a/chapter08/iproute2.xml b/chapter08/iproute2.xml index 25e7e81be..d57e4725c 100644 --- a/chapter08/iproute2.xml +++ b/chapter08/iproute2.xml @@ -42,12 +42,12 @@ <title>Installation of IPRoute2 The arpd program included in this package will not - be built since it is dependent on Berkeley DB, which is not installed in - LFS. However, a directory for arpd and a man page will still - be installed. Prevent this by running the commands below. - If the arpd binary is needed, - instructions for compiling Berkeley DB can be found in the BLFS Book at - . + be built since it depends on Berkeley DB, which is not installed in + LFS. However, a directory and a man page for arpd will still + be installed. Prevent this by running the commands shown below. + (If the arpd program is needed, + instructions for compiling Berkeley DB can be found in the BLFS book at + .) sed -i /ARPD/d Makefile @@ -129,7 +129,7 @@ cp -v COPYING README* /usr/share/doc/iproute2-&iproute2-version; genl - Generic netlink utility frontend + Generic netlink utility front end genl @@ -140,9 +140,9 @@ cp -v COPYING README* /usr/share/doc/iproute2-&iproute2-version;ifcfg A shell script wrapper for the ip command - [Note that it requires the arping and + (Note that this script requires the arping and rdisk programs from the - iputils package found at .] + iputils package found at .) ifcfg @@ -152,8 +152,8 @@ cp -v COPYING README* /usr/share/doc/iproute2-&iproute2-version; ifstat - Shows the interface statistics, including the amount of - transmitted and received packets by interface + Shows interface statistics, including the number of + packets transmitted and received, by interface ifstat @@ -163,7 +163,7 @@ cp -v COPYING README* /usr/share/doc/iproute2-&iproute2-version; ip - The main executable. It has several different functions: + The main executable. It has several different functions, including these: ip link <device> allows users to look at the state of devices and to make changes @@ -213,7 +213,7 @@ cp -v COPYING README* /usr/share/doc/iproute2-&iproute2-version; nstat - Shows network statistics + Displays network statistics nstat @@ -223,7 +223,7 @@ cp -v COPYING README* /usr/share/doc/iproute2-&iproute2-version; routef - A component of ip route. This is for flushing + A component of ip route, for flushing the routing tables routef @@ -234,7 +234,7 @@ cp -v COPYING README* /usr/share/doc/iproute2-&iproute2-version; routel - A component of ip route. This is for listing + A component of ip route, for listing the routing tables routel @@ -266,7 +266,7 @@ cp -v COPYING README* /usr/share/doc/iproute2-&iproute2-version; rtpr - Converts the output of ip -o back into a + Converts the output of ip -o into a readable form rtpr @@ -295,25 +295,26 @@ cp -v COPYING README* /usr/share/doc/iproute2-&iproute2-version; + tc - Traffic Controlling Executable; this is for Quality Of Service - (QOS) and Class Of Service (COS) implementations + Traffic control for Quality of Service + (QoS) and Class of Service (CoS) implementations - tc qdisc allows users to setup the queueing + tc qdisc allows users to set up the queueing discipline - tc class allows users to setup classes based + tc class allows users to set up classes based on the queuing discipline scheduling tc estimator allows users to estimate the - network flow into a network + data flow through a network - tc filter allows users to setup the QOS/COS + tc filter allows users to set up the QoS/CoS packet filtering - tc policy allows users to setup the QOS/COS + tc policy allows users to set up the QoS/CoS policies tc From 75aef881b75eb5e09c067ce8623827dfdff898ea Mon Sep 17 00:00:00 2001 From: David Bryant Date: Sun, 11 Dec 2022 16:47:14 -0600 Subject: [PATCH 09/10] Changed "front-end" to "front end". Webster says the hyphenated version is an adjective. When "front end" is a noun, as it is here, it should be spelled as two words. --- chapter08/groff.xml | 2 +- chapter08/m4.xml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/chapter08/groff.xml b/chapter08/groff.xml index 1b0870d9d..e5ae875f3 100644 --- a/chapter08/groff.xml +++ b/chapter08/groff.xml @@ -222,7 +222,7 @@ groff - A front-end to the groff document formatting system; normally, it + A front end to the groff document formatting system; normally, it runs the troff program and a post-processor appropriate for the selected device diff --git a/chapter08/m4.xml b/chapter08/m4.xml index 13b032a25..14ce93291 100644 --- a/chapter08/m4.xml +++ b/chapter08/m4.xml @@ -89,7 +89,7 @@ echo "#define _IO_IN_BACKUP 0x100" >> lib/stdio-impl.h m4 has built-in functions for including named files, running Unix commands, performing integer arithmetic, manipulating text, recursion, etc. The m4 program - can be used either as a front-end to a compiler or as a macro processor + can be used either as a front end to a compiler or as a macro processor in its own right m4 From c1a6bf9b71a7a8d9d00d9e30ee566feb8247cc80 Mon Sep 17 00:00:00 2001 From: Xi Ruoyao Date: Mon, 12 Dec 2022 20:24:12 +0800 Subject: [PATCH 10/10] iproute2: ifcfg and routef are gone Link: https://git.kernel.org/pub/scm/network/iproute2/iproute2.git/commit/?id=adddf30cd85fc0191450218905b37a29814d35a2 Link: https://git.kernel.org/pub/scm/network/iproute2/iproute2.git/commit/?id=1eaebad2c536b9ef9bd047a45438ae7ed273ee91 --- chapter08/iproute2.xml | 28 ++-------------------------- 1 file changed, 2 insertions(+), 26 deletions(-) diff --git a/chapter08/iproute2.xml b/chapter08/iproute2.xml index d57e4725c..878ae22ed 100644 --- a/chapter08/iproute2.xml +++ b/chapter08/iproute2.xml @@ -93,8 +93,8 @@ cp -v COPYING README* /usr/share/doc/iproute2-&iproute2-version;Installed directories - bridge, ctstat (link to lnstat), genl, ifcfg, ifstat, ip, lnstat, - nstat, routef, routel, rtacct, rtmon, rtpr, rtstat (link to lnstat), ss, + bridge, ctstat (link to lnstat), genl, ifstat, ip, lnstat, + nstat, routel, rtacct, rtmon, rtpr, rtstat (link to lnstat), ss, and tc /etc/iproute2, /usr/lib/tc, and /usr/share/doc/iproute2-&iproute2-version; @@ -136,19 +136,6 @@ cp -v COPYING README* /usr/share/doc/iproute2-&iproute2-version; - - ifcfg - - A shell script wrapper for the ip command - (Note that this script requires the arping and - rdisk programs from the - iputils package found at .) - - ifcfg - - - - ifstat @@ -220,17 +207,6 @@ cp -v COPYING README* /usr/share/doc/iproute2-&iproute2-version; - - routef - - A component of ip route, for flushing - the routing tables - - routef - - - - routel