aboutsummaryrefslogtreecommitdiffstats
path: root/chapter05/pwdgroup.xml
diff options
context:
space:
mode:
authorGerard Beekmans <gerard@linuxfromscratch.org>2001-07-06 15:25:48 +0000
committerGerard Beekmans <gerard@linuxfromscratch.org>2001-07-06 15:25:48 +0000
commit11ce06ae65258859cc43ab338e2a81f880b011e4 (patch)
tree5beb41dca40b1fa68041dfd0c86d981387c5af42 /chapter05/pwdgroup.xml
parente3f06c0127185ea72d51f06fe812031e459df463 (diff)
Removed indentation from commands (from <blockquote><literallayout> to
<para><screen> git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@760 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter05/pwdgroup.xml')
-rw-r--r--chapter05/pwdgroup.xml40
1 files changed, 22 insertions, 18 deletions
diff --git a/chapter05/pwdgroup.xml b/chapter05/pwdgroup.xml
index 279e73e18..28e17442b 100644
--- a/chapter05/pwdgroup.xml
+++ b/chapter05/pwdgroup.xml
@@ -21,32 +21,36 @@ Create a new file <filename>$LFS/etc/passwd</filename> by running the
following command:
</para>
-<blockquote><literallayout>
- <userinput>echo "root:x:0:0:root:/root:/bin/bash" &gt;
- $LFS/etc/passwd</userinput>
-</literallayout></blockquote>
+<para>
+<screen>
+<userinput>echo "root:x:0:0:root:/root:/bin/bash" &gt; $LFS/etc/passwd
+</userinput>
+</screen>
+</para>
<para>
Create a new file <filename>$LFS/etc/group</filename> by running the
following:
</para>
-<literallayout>
+<para>
+<screen>
<userinput>cat &gt; $LFS/etc/group &lt;&lt; "EOF"</userinput>
- root:x:0:
- bin:x:1:
- sys:x:2:
- kmem:x:3:
- tty:x:4:
- tape:x:5:
- daemon:x:6:
- floppy:x:7:
- disk:x:8:
- lp:x:9:
- dialout:x:10:
- audio:x:11:
+root:x:0:
+bin:x:1:
+sys:x:2:
+kmem:x:3:
+tty:x:4:
+tape:x:5:
+daemon:x:6:
+floppy:x:7:
+disk:x:8:
+lp:x:9:
+dialout:x:10:
+audio:x:11:
<userinput>EOF</userinput>
-</literallayout>
+</screen>
+</para>
</sect1>