aboutsummaryrefslogtreecommitdiffstats
path: root/chapter09/reboot.xml
diff options
context:
space:
mode:
authorGerard Beekmans <gerard@linuxfromscratch.org>2002-05-28 00:34:53 +0000
committerGerard Beekmans <gerard@linuxfromscratch.org>2002-05-28 00:34:53 +0000
commit3ddb6153c391ef5dbacd81d2c3a83cdf6ca6aba1 (patch)
tree4b6392cf591932b4ac22edf1d4bce9c519bf58d7 /chapter09/reboot.xml
parent2b3079724602255a2267d5ed4e57996b6d6deb0f (diff)
dealing with umounting multiple partitions
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@1920 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter09/reboot.xml')
-rw-r--r--chapter09/reboot.xml12
1 files changed, 10 insertions, 2 deletions
diff --git a/chapter09/reboot.xml b/chapter09/reboot.xml
index c0763cd26..788e43160 100644
--- a/chapter09/reboot.xml
+++ b/chapter09/reboot.xml
@@ -6,8 +6,16 @@
it's time to reboot the computer. Before we reboot let's unmount
$LFS/proc and the LFS partition itself by running:</para>
-<para><screen><userinput>umount $LFS/proc &amp;&amp;</userinput>
-<userinput>umount $LFS</userinput></screen></para>
+<para><screen><userinput>umount $LFS/proc &amp;&amp;
+umount $LFS</userinput></screen></para>
+
+<para>If you decided to create multiple partitions, you need to umount the
+other partitions before you umount $LFS, like this:</para>
+
+<para><screen><userinput>umount $LFS/proc &amp;&amp;
+umount $LFS/usr &amp;&amp;
+umount $LFS/home &amp;&amp;
+umount $LFS</userinput></screen></para>
<para>And you can reboot your system by running something like:</para>