Specify the filesystem type when mounting.

git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@7639 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
This commit is contained in:
Archaic 2006-05-30 21:11:37 +00:00
parent ef9aabcec7
commit b7a775eb55

View File

@ -26,7 +26,7 @@
running:</para> running:</para>
<screen role="nodump"><userinput>mkdir -pv $LFS <screen role="nodump"><userinput>mkdir -pv $LFS
mount -v /dev/<replaceable>&lt;xxx&gt;</replaceable> $LFS</userinput></screen> mount -v -t ext3 /dev/<replaceable>&lt;xxx&gt;</replaceable> $LFS</userinput></screen>
<para>Replace <replaceable>&lt;xxx&gt;</replaceable> with the designation of the LFS <para>Replace <replaceable>&lt;xxx&gt;</replaceable> with the designation of the LFS
partition.</para> partition.</para>
@ -36,9 +36,9 @@ mount -v /dev/<replaceable>&lt;xxx&gt;</replaceable> $LFS</userinput></screen>
class="directory">/usr</filename>), mount them using:</para> class="directory">/usr</filename>), mount them using:</para>
<screen role="nodump"><userinput>mkdir -pv $LFS <screen role="nodump"><userinput>mkdir -pv $LFS
mount -v /dev/<replaceable>&lt;xxx&gt;</replaceable> $LFS mount -v -t ext3 /dev/<replaceable>&lt;xxx&gt;</replaceable> $LFS
mkdir -v $LFS/usr mkdir -v $LFS/usr
mount -v /dev/<replaceable>&lt;yyy&gt;</replaceable> $LFS/usr</userinput></screen> mount -v -t ext3 /dev/<replaceable>&lt;yyy&gt;</replaceable> $LFS/usr</userinput></screen>
<para>Replace <replaceable>&lt;xxx&gt;</replaceable> and <para>Replace <replaceable>&lt;xxx&gt;</replaceable> and
<replaceable>&lt;yyy&gt;</replaceable> with the appropriate partition <replaceable>&lt;yyy&gt;</replaceable> with the appropriate partition