diff options
author | Manuel Canales Esparcia <manuel@linuxfromscratch.org> | 2005-10-15 17:22:01 +0000 |
---|---|---|
committer | Manuel Canales Esparcia <manuel@linuxfromscratch.org> | 2005-10-15 17:22:01 +0000 |
commit | 1ec69ac57c066d03b36db24f05931b5a8c9d76cf (patch) | |
tree | 489a94366767addeee8ca9ca3c4415ecf8b986c0 /chapter07 | |
parent | e9f3e85324f490524718480c7c8b4a22f563a753 (diff) |
Added nodump attributes.
git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/6.1.1/BOOK@7021 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter07')
-rw-r--r-- | chapter07/console.xml | 10 | ||||
-rw-r--r-- | chapter07/hosts.xml | 2 | ||||
-rw-r--r-- | chapter07/profile.xml | 4 | ||||
-rw-r--r-- | chapter07/udev.xml | 2 |
4 files changed, 9 insertions, 9 deletions
diff --git a/chapter07/console.xml b/chapter07/console.xml index 218123f89..a8692c58b 100644 --- a/chapter07/console.xml +++ b/chapter07/console.xml @@ -40,7 +40,7 @@ EOF</userinput></screen> character (accessible by pressing AltGr+E), the following settings are correct:</para> -<screen><userinput>cat >/etc/sysconfig/console <<"EOF" +<screen role="nodump"><userinput>cat >/etc/sysconfig/console <<"EOF" <literal>KEYMAP="es euro2" FONT="lat9-16 -u iso01"</literal> EOF</userinput></screen> @@ -49,7 +49,7 @@ EOF</userinput></screen> character set. If using ISO 8859-1 and, therefore, a pound sign instead of Euro, the correct <envar>FONT</envar> line would be:</para> -<screen><userinput>FONT="lat1-16"</userinput></screen></note> +<screen role="nodump"><userinput>FONT="lat1-16"</userinput></screen></note> <para>If the <envar>KEYMAP</envar> or <envar>FONT</envar> variable is not set, the <command>console</command> initscript will not run the corresponding @@ -61,14 +61,14 @@ 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):</para> -<screen><userinput>zgrep '\W14\W' <replaceable>[/path/to/your/keymap]</replaceable></userinput></screen> +<screen role="nodump"><userinput>zgrep '\W14\W' <replaceable>[/path/to/your/keymap]</replaceable></userinput></screen> <beginpage/> <para>If the keycode 14 is Backspace instead of Delete, create the following keymap snippet to fix this issue:</para> -<screen><userinput>mkdir -p /etc/kbd && cat > /etc/kbd/bs-sends-del <<"EOF" +<screen role="nodump"><userinput>mkdir -p /etc/kbd && cat > /etc/kbd/bs-sends-del <<"EOF" <literal> keycode 14 = Delete Delete Delete Delete alt keycode 14 = Meta_Delete altgr alt keycode 14 = Meta_Delete @@ -81,7 +81,7 @@ EOF</userinput></screen> <para>Tell the <command>console</command> script to load this snippet after the main keymap:</para> -<screen><userinput>cat >>/etc/sysconfig/console <<"EOF" +<screen role="nodump"><userinput>cat >>/etc/sysconfig/console <<"EOF" <literal>KEYMAP_CORRECTIONS="/etc/kbd/bs-sends-del"</literal> EOF</userinput></screen> 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).</para> <para>If a network card is not going to be configured, create the <filename>/etc/hosts</filename> file by running:</para> -<screen><userinput>cat > /etc/hosts << "EOF" +<screen role="nodump"><userinput>cat > /etc/hosts << "EOF" <literal># Begin /etc/hosts (no network card version) 127.0.0.1 <replaceable>[<HOSTNAME>.example.org]</replaceable> <replaceable>[HOSTNAME]</replaceable> 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.</para> <para>The list of all locales supported by Glibc can be obtained by running the following command:</para> -<screen><userinput>locale -a</userinput></screen> +<screen role="nodump"><userinput>locale -a</userinput></screen> <para>Locales can have a number of synonyms, e.g. <quote>ISO-8859-1</quote> is also referred to as <quote>iso8859-1</quote> and <quote>iso88591</quote>. @@ -76,7 +76,7 @@ canonical name, run the following command, where <command>locale -a</command> for your preferred locale (<quote>en_GB.iso88591</quote> in our example).</para> -<screen><userinput>LC_ALL=<replaceable>[locale name]</replaceable> locale charmap</userinput></screen> +<screen role="nodump"><userinput>LC_ALL=<replaceable>[locale name]</replaceable> locale charmap</userinput></screen> <para>For the <quote>en_GB.iso88591</quote> locale, the above command will print:</para> diff --git a/chapter07/udev.xml b/chapter07/udev.xml index 667baea83..6f441e7a7 100644 --- a/chapter07/udev.xml +++ b/chapter07/udev.xml @@ -181,7 +181,7 @@ handled in one of two ways:</para> <command>modprobe</command> command <quote>when loading this module, also load this other module, at the same time.</quote> For example:</para> -<screen><userinput>install snd-pcm modprobe -i snd-pcm ; modprobe \ +<screen role="nodump"><userinput>install snd-pcm modprobe -i snd-pcm ; modprobe \ snd-pcm-oss ; true</userinput></screen> <para>This will cause the system to load both the |