diff --git a/chapter07/console.xml b/chapter07/console.xml
index 231a5fcae..9da42a23c 100644
--- a/chapter07/console.xml
+++ b/chapter07/console.xml
@@ -40,7 +40,7 @@ EOF
character (accessible by pressing AltGr+E), the following settings are
correct:
-cat >/etc/sysconfig/console <<"EOF"
+cat >/etc/sysconfig/console <<"EOF"
KEYMAP="es euro2"
FONT="lat9-16 -u iso01"
EOF
@@ -49,7 +49,7 @@ EOF
character set. If using ISO 8859-1 and, therefore, a pound sign
instead of Euro, the correct FONT line would be:
-FONT="lat1-16"
+FONT="lat1-16"
If the KEYMAP or FONT variable is not set, the
console initscript will not run the corresponding
@@ -61,12 +61,12 @@ applications. For example, Emacs displays its help (instead of erasing the
character before the cursor) when Backspace is pressed. To check if the keymap
in use is affected (this works only for i386 keymaps):
-zgrep '\W14\W' [/path/to/your/keymap]
+zgrep '\W14\W' [/path/to/your/keymap]
If the keycode 14 is Backspace instead of Delete, create the
following keymap snippet to fix this issue:
-mkdir -pv /etc/kbd && cat > /etc/kbd/bs-sends-del <<"EOF"
+mkdir -pv /etc/kbd && cat > /etc/kbd/bs-sends-del <<"EOF"
keycode 14 = Delete Delete Delete Delete
alt keycode 14 = Meta_Delete
altgr alt keycode 14 = Meta_Delete
@@ -79,7 +79,7 @@ EOF
Tell the console script to load this
snippet after the main keymap:
-cat >>/etc/sysconfig/console <<"EOF"
+cat >>/etc/sysconfig/console <<"EOF"
KEYMAP_CORRECTIONS="/etc/kbd/bs-sends-del"
EOF
diff --git a/chapter07/hosts.xml b/chapter07/hosts.xml
index 30644cd34..f08dfab4e 100644
--- a/chapter07/hosts.xml
+++ b/chapter07/hosts.xml
@@ -62,7 +62,7 @@ machine will be connected to an existing network).
If a network card is not going to be configured, create the
/etc/hosts file by running:
-cat > /etc/hosts << "EOF"
+cat > /etc/hosts << "EOF"
# Begin /etc/hosts (no network card version)
127.0.0.1 [<HOSTNAME>.example.org] [HOSTNAME] localhost
diff --git a/chapter07/profile.xml b/chapter07/profile.xml
index 98faa3457..5748762cb 100644
--- a/chapter07/profile.xml
+++ b/chapter07/profile.xml
@@ -65,7 +65,7 @@ canonical charmap for your chosen locale.
The list of all locales supported by Glibc can be obtained by running
the following command:
-locale -a
+locale -a
Locales can have a number of synonyms, e.g. ISO-8859-1
is
also referred to as iso8859-1
and iso88591
.
@@ -76,7 +76,7 @@ canonical name, run the following command, where
locale -a for your preferred locale
(en_GB.iso88591
in our example).
-LC_ALL=[locale name] locale charmap
+LC_ALL=[locale name] locale charmap
For the en_GB.iso88591
locale, the above command
will print:
diff --git a/chapter07/udev.xml b/chapter07/udev.xml
index bad5795f3..64b3a43c7 100644
--- a/chapter07/udev.xml
+++ b/chapter07/udev.xml
@@ -181,7 +181,7 @@ handled in one of two ways:
modprobe command when loading this module,
also load this other module, at the same time.
For example:
-install snd-pcm modprobe -i snd-pcm ; modprobe \
+install snd-pcm modprobe -i snd-pcm ; modprobe \
snd-pcm-oss ; true
This will cause the system to load both the
diff --git a/chapter08/kernel.xml b/chapter08/kernel.xml
index 468ab95d5..fb6a05b19 100644
--- a/chapter08/kernel.xml
+++ b/chapter08/kernel.xml
@@ -45,7 +45,7 @@ un-tarring.
If, in it was decided to
compile the keymap into the kernel, issue the command below:
-loadkeys -m /usr/share/kbd/keymaps/[path to keymap] > \
+loadkeys -m /usr/share/kbd/keymaps/[path to keymap] > \
drivers/char/defkeymap.c
For example, if using a Dutch keyboard, use
@@ -56,7 +56,7 @@ information regarding particular kernel configuration requirements of
packages outside of LFS at :
-make menuconfig
+make menuconfig
Alternatively, make oldconfig may be more appropriate in some
situations. See the README file for more