aboutsummaryrefslogtreecommitdiffstats
path: root/chapter07/console.xml
diff options
context:
space:
mode:
Diffstat (limited to 'chapter07/console.xml')
-rw-r--r--chapter07/console.xml10
1 files changed, 5 insertions, 5 deletions
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</userinput></screen>
character (accessible by pressing AltGr+E), the following settings are
correct:</para>
-<screen><userinput>cat &gt;/etc/sysconfig/console &lt;&lt;"EOF"
+<screen role="nodump"><userinput>cat &gt;/etc/sysconfig/console &lt;&lt;"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,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):</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>
<para>If the keycode 14 is Backspace instead of Delete, create the
following keymap snippet to fix this issue:</para>
-<screen><userinput>mkdir -pv /etc/kbd &amp;&amp; cat &gt; /etc/kbd/bs-sends-del &lt;&lt;"EOF"
+<screen role="nodump"><userinput>mkdir -pv /etc/kbd &amp;&amp; cat &gt; /etc/kbd/bs-sends-del &lt;&lt;"EOF"
<literal> keycode 14 = Delete Delete Delete Delete
alt keycode 14 = Meta_Delete
altgr alt keycode 14 = Meta_Delete
@@ -79,7 +79,7 @@ EOF</userinput></screen>
<para>Tell the <command>console</command> script to load this
snippet after the main keymap:</para>
-<screen><userinput>cat &gt;&gt;/etc/sysconfig/console &lt;&lt;"EOF"
+<screen role="nodump"><userinput>cat &gt;&gt;/etc/sysconfig/console &lt;&lt;"EOF"
<literal>KEYMAP_CORRECTIONS="/etc/kbd/bs-sends-del"</literal>
EOF</userinput></screen>