1
0
mirror of https://git.linuxfromscratch.org/lfs.git synced 2025-06-22 13:19:20 +01:00

add <literal> to make commands for temp /etc/hosts and final /etc/pip3.conf looking better

This commit is contained in:
Xi Ruoyao 2022-09-14 11:50:55 +08:00
parent 95789f1ae4
commit 2e9e5b43c5
No known key found for this signature in database
GPG Key ID: ACAAD20E19E710E3
2 changed files with 5 additions and 5 deletions
chapter07
chapter08

View File

@ -48,8 +48,8 @@
as well:</para>
<screen><userinput>cat &gt; /etc/hosts &lt;&lt; EOF
127.0.0.1 localhost $(hostname)
::1 localhost
<literal>127.0.0.1 localhost $(hostname)
::1 localhost</literal>
EOF</userinput></screen>
<para>In order for user <systemitem class="username">root</systemitem> to be

View File

@ -116,10 +116,10 @@
well. If desired, suppress these warnings by running the following
commands:</para>
<screen><userinput remap="install">cat &gt; /etc/pip.conf &lt;&lt; EOF
[global]
<screen><userinput remap="install">cat &gt; /etc/pip.conf &lt;&lt; EOF
<literal>[global]
root-user-action = ignore
disable-pip-version-check = true
disable-pip-version-check = true</literal>
EOF
</userinput></screen>
<!--