diff options
Diffstat (limited to 'chapter06/kernfs.xml')
-rw-r--r-- | chapter06/kernfs.xml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/chapter06/kernfs.xml b/chapter06/kernfs.xml index eb6bba52f..34273b7b2 100644 --- a/chapter06/kernfs.xml +++ b/chapter06/kernfs.xml @@ -13,12 +13,12 @@ used for them. The content of the file systems resides in memory.</para> <para>Begin by creating directories onto which the file systems will be mounted:</para> -<screen><userinput>mkdir -p $LFS/{proc,sys}</userinput></screen> +<screen><userinput>mkdir -pv $LFS/{proc,sys}</userinput></screen> <para>Now mount the file systems:</para> -<screen><userinput>mount -t proc proc $LFS/proc -mount -t sysfs sysfs $LFS/sys</userinput></screen> +<screen><userinput>mount -vt proc proc $LFS/proc +mount -vt sysfs sysfs $LFS/sys</userinput></screen> <para>Remember that if for any reason you stop working on the LFS system and start again later, it is important to check that these file @@ -29,9 +29,9 @@ environment.</para> chroot environment. To keep the host up to date, perform a <quote>fake mount</quote> for each of these now:</para> -<screen><userinput>mount -f -t tmpfs tmpfs $LFS/dev -mount -f -t tmpfs tmpfs $LFS/dev/shm -mount -f -t devpts -o gid=4,mode=620 devpts $LFS/dev/pts</userinput></screen> +<screen><userinput>mount -vft tmpfs tmpfs $LFS/dev +mount -vft tmpfs tmpfs $LFS/dev/shm +mount -vft devpts -o gid=4,mode=620 devpts $LFS/dev/pts</userinput></screen> </sect1> |