aboutsummaryrefslogtreecommitdiffstats
path: root/chapter03
diff options
context:
space:
mode:
authorGerard Beekmans <gerard@linuxfromscratch.org>2002-04-03 23:17:34 +0000
committerGerard Beekmans <gerard@linuxfromscratch.org>2002-04-03 23:17:34 +0000
commit3566b5392dd213f0e9636654c8df360197c228cb (patch)
tree1689108d74af88dafa9967029a13b3c11dfdec9d /chapter03
parent0d544d411156d3b4b3c7004ddcafe0cc727f705d (diff)
added some notes how to deal with multiple partitions
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@1786 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter03')
-rw-r--r--chapter03/mounting.xml11
1 files changed, 11 insertions, 0 deletions
diff --git a/chapter03/mounting.xml b/chapter03/mounting.xml
index 7e17b3ec5..38b15eb28 100644
--- a/chapter03/mounting.xml
+++ b/chapter03/mounting.xml
@@ -24,5 +24,16 @@ back in chapter 2. If you were planning to make use of the $LFS environment
variable, <userinput>export LFS=/mnt/lfs</userinput> has to be executed
now.</para>
+<para>If you decided to create multiple partitions for LFS (say $LFS and
+$LFS/usr), mount them like this:</para>
+
+<para><screen><userinput>mkdir -p /mnt/lfs &amp;&amp;
+mount /dev/xxx /mnt/lfs &amp;&amp;
+mkdir /mnt/lfs/usr &amp;&amp;
+mount /dev/yyy /mnt/lfs/usr</userinput></screen></para>
+
+<para>Of course, replace /dev/xxx and /dev/yyy with the appropriate
+partition designations.</para>
+
</sect1>