Author: archaic Date: 2006-05-30 15:11:37 -0600 (Tue, 30 May 2006) New Revision: 7639
Modified: trunk/BOOK/chapter02/mounting.xml Log: Specify the filesystem type when mounting. Modified: trunk/BOOK/chapter02/mounting.xml =================================================================== --- trunk/BOOK/chapter02/mounting.xml 2006-05-30 20:03:54 UTC (rev 7638) +++ trunk/BOOK/chapter02/mounting.xml 2006-05-30 21:11:37 UTC (rev 7639) @@ -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 @@ 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 -- http://linuxfromscratch.org/mailman/listinfo/lfs-book FAQ: http://www.linuxfromscratch.org/lfs/faq.html Unsubscribe: See the above information page
