diff options
author | Greg Schafer <greg@linuxfromscratch.org> | 2003-10-09 23:22:07 +0000 |
---|---|---|
committer | Greg Schafer <greg@linuxfromscratch.org> | 2003-10-09 23:22:07 +0000 |
commit | 21ba4e3570c1c2524b0733d492ced9634b259353 (patch) | |
tree | f5124d2e6106d2e29e5b32f79b56a90defabdbd9 /chapter06/pwdgroup.xml | |
parent | 1a7aecc6119f540e24a4e8da1b583a625b5690c1 (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 'chapter06/pwdgroup.xml')
-rw-r--r-- | chapter06/pwdgroup.xml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/chapter06/pwdgroup.xml b/chapter06/pwdgroup.xml index 5b20f9b90..24767482a 100644 --- a/chapter06/pwdgroup.xml +++ b/chapter06/pwdgroup.xml @@ -9,9 +9,9 @@ name "root" to be recognized, there need to be relevant entries in the <para>Create the <filename>/etc/passwd</filename> file by running the following command:</para> -<para><screen><userinput>cat > /etc/passwd << "EOF"</userinput> +<screen><userinput>cat > /etc/passwd << "EOF"</userinput> root:x:0:0:root:/root:/bin/bash -<userinput>EOF</userinput></screen></para> +<userinput>EOF</userinput></screen> <para>The actual password for <emphasis>root</emphasis> (the "x" here is just a placeholder) will be set later.</para> @@ -19,7 +19,7 @@ placeholder) will be set later.</para> <para>Create the <filename>/etc/group</filename> file by running the following command:</para> -<para><screen><userinput>cat > /etc/group << "EOF"</userinput> +<screen><userinput>cat > /etc/group << "EOF"</userinput> root:x:0: bin:x:1: sys:x:2: @@ -32,7 +32,7 @@ disk:x:8: lp:x:9: dialout:x:10: audio:x:11: -<userinput>EOF</userinput></screen></para> +<userinput>EOF</userinput></screen> <para>The created groups aren't part of any standard -- they are the groups that the MAKEDEV script in the next section uses. Besides the group "root", the @@ -47,7 +47,7 @@ resolution will start working immediately after the created, because we installed a full Glibc in Chapter 5. This will get rid of the <quote>I have no name!</quote> prompt.</para> -<para><screen><userinput>exec /tools/bin/bash --login +h</userinput></screen></para> +<screen><userinput>exec /tools/bin/bash --login +h</userinput></screen> </sect1> |