diff options
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 |