aboutsummaryrefslogtreecommitdiffstats
path: root/chapter05/adding-user.xml
diff options
context:
space:
mode:
authorGreg Schafer <greg@linuxfromscratch.org>2003-10-09 23:22:07 +0000
committerGreg Schafer <greg@linuxfromscratch.org>2003-10-09 23:22:07 +0000
commit21ba4e3570c1c2524b0733d492ced9634b259353 (patch)
treef5124d2e6106d2e29e5b32f79b56a90defabdbd9 /chapter05/adding-user.xml
parent1a7aecc6119f540e24a4e8da1b583a625b5690c1 (diff)
Internal markup reworking to fix the extraneous whitespace problem in the "tidy generated" web site pages. Essentially replace all ocurrences of <para><screen> with <screen> (and of course the matching closing tags).
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@2958 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter05/adding-user.xml')
-rw-r--r--chapter05/adding-user.xml8
1 files changed, 4 insertions, 4 deletions
diff --git a/chapter05/adding-user.xml b/chapter05/adding-user.xml
index d8dd85422..65aaa8a2d 100644
--- a/chapter05/adding-user.xml
+++ b/chapter05/adding-user.xml
@@ -10,20 +10,20 @@ work environment we'll create a new user <emphasis>lfs</emphasis> and
use this one during the installation process. As <emphasis>root</emphasis>,
issue the following commands to add the new user:</para>
-<para><screen><userinput>useradd -s /bin/bash -m lfs
-passwd lfs</userinput></screen></para>
+<screen><userinput>useradd -s /bin/bash -m lfs
+passwd lfs</userinput></screen>
<para>Now grant this new user <emphasis>lfs</emphasis> full access to
<filename class="directory">$LFS/tools</filename> by giving it ownership
of the directory:</para>
-<para><screen><userinput>chown lfs $LFS/tools</userinput></screen></para>
+<screen><userinput>chown lfs $LFS/tools</userinput></screen>
<para>Next, login as user <emphasis>lfs</emphasis>. This can be done via a
virtual console, through a display manager, or with the following substitute
user command:</para>
-<para><screen><userinput>su - lfs</userinput></screen></para>
+<screen><userinput>su - lfs</userinput></screen>
<para>The "<userinput>-</userinput>" instructs <userinput>su</userinput> to
start a new, clean shell.</para>