diff --git a/chapter01/changelog.xml b/chapter01/changelog.xml index ed9bc23b6..1e12b99a5 100644 --- a/chapter01/changelog.xml +++ b/chapter01/changelog.xml @@ -35,6 +35,12 @@ +April 3rd, 2002 [gerard]: Chapter 05 - Mounting $LFS/proc: +Added chown root.root $LFS/proc. The recursive chown +operation in chapter 6 doesn't touch proc, so this'll remain owned by user +lfs. It's not a big deal, just not a very clean thing +to do. + April 3rd, 2002 [gerard]: Chapter 06 - Groff: Added a few symlinks that are used by programs like xman and others. diff --git a/chapter05/proc.xml b/chapter05/proc.xml index 45b94ea45..365c10b51 100644 --- a/chapter05/proc.xml +++ b/chapter05/proc.xml @@ -12,9 +12,12 @@ in again as user root. The reason for this is simple: only root is allowed to mount filesystems and to run chroot. The proc file system is mounted under $LFS/proc by running the -following command: +following command. We'll also chown it to user root/group root while we're +at it (the rest of the filesystem is chown'ed to root.root in a minute when +we start with chapter 6). -mount proc $LFS/proc -t proc +chown root.root $LFS/proc && +mount proc $LFS/proc -t proc