diff options
author | Matthew Burgess <matthew@linuxfromscratch.org> | 2005-09-29 20:55:40 +0000 |
---|---|---|
committer | Matthew Burgess <matthew@linuxfromscratch.org> | 2005-09-29 20:55:40 +0000 |
commit | 59988921ebad528d4b2ea1a78be81f5feee490d5 (patch) | |
tree | b66eb3c3de1bbad64774418afb69989e18641765 /chapter02/mounting.xml | |
parent | 8c68addc8e21ceaec084545ee0ed6c983d054232 (diff) |
Add -v to commands that accept it
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@6913 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter02/mounting.xml')
-rw-r--r-- | chapter02/mounting.xml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/chapter02/mounting.xml b/chapter02/mounting.xml index e9ffd2d26..37654087a 100644 --- a/chapter02/mounting.xml +++ b/chapter02/mounting.xml @@ -22,8 +22,8 @@ environment variable by running:</para> <para>Next, create the mount point and mount the LFS file system by running:</para> -<screen role="nodump"><userinput>mkdir -p $LFS -mount /dev/<replaceable>[xxx]</replaceable> $LFS</userinput></screen> +<screen role="nodump"><userinput>mkdir -pv $LFS +mount -v /dev/<replaceable>[xxx]</replaceable> $LFS</userinput></screen> <para>Replace <replaceable>[xxx]</replaceable> with the designation of the LFS partition.</para> @@ -32,10 +32,10 @@ partition.</para> class="directory">/</filename> and another for <filename class="directory">/usr</filename>), mount them using:</para> -<screen role="nodump"><userinput>mkdir -p $LFS -mount /dev/<replaceable>[xxx]</replaceable> $LFS -mkdir $LFS/usr -mount /dev/<replaceable>[yyy]</replaceable> $LFS/usr</userinput></screen> +<screen role="nodump"><userinput>mkdir -pv $LFS +mount -v /dev/<replaceable>[xxx]</replaceable> $LFS +mkdir -v $LFS/usr +mount -v /dev/<replaceable>[yyy]</replaceable> $LFS/usr</userinput></screen> <para>Replace <replaceable>[xxx]</replaceable> and <replaceable>[yyy]</replaceable> with the appropriate partition |