diff options
author | Manuel Canales Esparcia <manuel@linuxfromscratch.org> | 2005-01-30 10:24:49 +0000 |
---|---|---|
committer | Manuel Canales Esparcia <manuel@linuxfromscratch.org> | 2005-01-30 10:24:49 +0000 |
commit | d7ea6f24b8cc5ac061f2d52a758721523dd5410a (patch) | |
tree | 494be49cd09627471ac9e40bcd5b5daddbd3694a /chapter02/mounting.xml | |
parent | 9c1013953a22e3867db972dd6ea89d167a608fc4 (diff) |
Removed obsolete commented text, chapter02.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@4594 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter02/mounting.xml')
-rw-r--r-- | chapter02/mounting.xml | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/chapter02/mounting.xml b/chapter02/mounting.xml index 52e4409aa..bd2b69824 100644 --- a/chapter02/mounting.xml +++ b/chapter02/mounting.xml @@ -9,46 +9,4 @@ <para>See testing</para> -<!-- -<para>Now that we've created a file system, we want to be able to access -the partition. For that, we need to mount it, and have to choose a mount -point. In this book we assume that the file system is mounted under -<filename class="directory">/mnt/lfs</filename>, but it doesn't matter what directory -you choose.</para> - -<para>Choose a mount point and assign it to the LFS environment variable -by running:</para> - -<screen><userinput>export LFS=/mnt/lfs</userinput></screen> - -<para>Now create the mount point and mount the LFS file system by running:</para> - -<screen><userinput>mkdir -p $LFS -mount /dev/<replaceable>[xxx]</replaceable> $LFS</userinput></screen> - -<para>Replace <replaceable>[xxx]</replaceable> with the designation of the LFS -partition.</para> - -<para>If you have decided to use multiple partitions for LFS (say one for -<filename class="directory">/</filename> and another for -<filename class="directory">/usr</filename>), mount them like this:</para> - -<screen><userinput>mkdir -p $LFS -mount /dev/<replaceable>[xxx]</replaceable> $LFS -mkdir $LFS/usr -mount /dev/<replaceable>[yyy]</replaceable> $LFS/usr</userinput></screen> - -<para>Of course, replace <replaceable>[xxx]</replaceable> and -<replaceable>[yyy]</replaceable> with the appropriate partition names.</para> - -<para>You should also ensure that this new partition is not mounted with -permissions that are too restrictive (such as the nosuid, nodev or noatime -options). You can run the <command>mount</command> command without any -parameters to see with what options the LFS partition is mounted. If -you see nosuid, nodev or noatime, you will need to remount it.</para> - -<para>Now that we've made ourselves a place to work in, we're ready to download -the packages.</para> ---> - </sect1> |