diff options
author | Manuel Canales Esparcia <manuel@linuxfromscratch.org> | 2005-10-19 21:06:01 +0000 |
---|---|---|
committer | Manuel Canales Esparcia <manuel@linuxfromscratch.org> | 2005-10-19 21:06:01 +0000 |
commit | e727ee5f339e291ae20b54ecd2f14297f450414e (patch) | |
tree | d77e0a137f6bbd8cc8358f9e67bd1ac822ff8502 /chapter06/kernfs.xml | |
parent | 8ac07b8d1b06db8fd6abc7db5480248a317acf3a (diff) |
Added -v switches.
git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/6.1.1/BOOK@7059 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
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> |