diff options
author | Archaic <archaic@linuxfromscratch.org> | 2006-05-30 21:11:37 +0000 |
---|---|---|
committer | Archaic <archaic@linuxfromscratch.org> | 2006-05-30 21:11:37 +0000 |
commit | b7a775eb552eee25b220ee6d0b13149310aef79e (patch) | |
tree | b884830d8955537ad14dccc2d5d17d8764b1b4fe | |
parent | ef9aabcec74a20d1806eb67d5a162dc37e97e022 (diff) |
Specify the filesystem type when mounting.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@7639 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
-rw-r--r-- | chapter02/mounting.xml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chapter02/mounting.xml b/chapter02/mounting.xml index 2d081fc79..3572e1861 100644 --- a/chapter02/mounting.xml +++ b/chapter02/mounting.xml @@ -26,7 +26,7 @@ running:</para> <screen role="nodump"><userinput>mkdir -pv $LFS -mount -v /dev/<replaceable><xxx></replaceable> $LFS</userinput></screen> +mount -v -t ext3 /dev/<replaceable><xxx></replaceable> $LFS</userinput></screen> <para>Replace <replaceable><xxx></replaceable> with the designation of the LFS partition.</para> @@ -36,9 +36,9 @@ mount -v /dev/<replaceable><xxx></replaceable> $LFS</userinput></screen> class="directory">/usr</filename>), mount them using:</para> <screen role="nodump"><userinput>mkdir -pv $LFS -mount -v /dev/<replaceable><xxx></replaceable> $LFS +mount -v -t ext3 /dev/<replaceable><xxx></replaceable> $LFS mkdir -v $LFS/usr -mount -v /dev/<replaceable><yyy></replaceable> $LFS/usr</userinput></screen> +mount -v -t ext3 /dev/<replaceable><yyy></replaceable> $LFS/usr</userinput></screen> <para>Replace <replaceable><xxx></replaceable> and <replaceable><yyy></replaceable> with the appropriate partition |