aboutsummaryrefslogtreecommitdiffstats
path: root/chapter06/changingowner.xml
diff options
context:
space:
mode:
authorGerard Beekmans <gerard@linuxfromscratch.org>2002-05-25 00:19:47 +0000
committerGerard Beekmans <gerard@linuxfromscratch.org>2002-05-25 00:19:47 +0000
commit5e2cb652195321c7f63b5d22077e583b75118178 (patch)
treed64a6d22aa92dfd27bfd0df8a9b973c5068ab16a /chapter06/changingowner.xml
parent1f61f4234c1bb6da0c31e9370d76dc78c975ebba (diff)
first set of commits for keep-chap5-chap6-seperate
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@1896 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter06/changingowner.xml')
-rw-r--r--chapter06/changingowner.xml11
1 files changed, 4 insertions, 7 deletions
diff --git a/chapter06/changingowner.xml b/chapter06/changingowner.xml
index ed50198b7..94bac26ec 100644
--- a/chapter06/changingowner.xml
+++ b/chapter06/changingowner.xml
@@ -6,19 +6,16 @@
all files and directories that were installed in chapter 5 back to root.
Run the following commands to do so:</para>
-<para><screen><userinput>chown 0:0 / /proc &amp;&amp;
-chown -R 0:0 /{bin,boot,dev,etc,home,lib,mnt,opt,root,sbin,tmp,usr,var}</userinput></screen></para>
+<para><screen><userinput>chown -R 0:0 /</userinput></screen></para>
<para>Depending on the filesystem you created on the LFS partition, you may
have a /lost+found directory. If so, run:</para>
<para><screen><userinput>chown 0:0 /lost+found</userinput></screen></para>
-<para>These commands will change the ownership of the root partition and
-the <filename>/proc</filename> directory to root, plus everything under
-the directories mentioned in the second line. In these commands, 0:0 is
-used instead of the usual root:root, because the username root can't be
-resolved because glibc is not yet installed.</para>
+<para>These commands will change the ownership of the root partition to
+root. In these commands, 0:0 is used instead of the usual root:root, because
+the username root can't be resolved because glibc is not yet installed.</para>
</sect1>