mirror of
https://git.linuxfromscratch.org/lfs.git
synced 2025-01-31 11:21:59 +00:00
21ba4e3570
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@2958 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
32 lines
1018 B
XML
32 lines
1018 B
XML
<sect1 id="ch09-reboot">
|
|
<title>Rebooting the system</title>
|
|
<?dbhtml filename="reboot.html" dir="chapter09"?>
|
|
|
|
<para>Now that all of the software has been installed, it's time to reboot
|
|
the computer. Before we reboot, let's unmount $LFS/proc and the LFS
|
|
partition itself by running:</para>
|
|
|
|
<screen><userinput>umount $LFS/proc
|
|
umount $LFS</userinput></screen>
|
|
|
|
<para>If you decided to create multiple partitions, you need to umount the
|
|
other partitions before you umount $LFS, like this:</para>
|
|
|
|
<screen><userinput>umount $LFS/proc
|
|
umount $LFS/usr
|
|
umount $LFS/home
|
|
umount $LFS</userinput></screen>
|
|
|
|
<para>And you can reboot your system by running something like:</para>
|
|
|
|
<screen><userinput>/sbin/shutdown -r now</userinput></screen>
|
|
|
|
<para>At the Grub menu make sure that you tell it to boot
|
|
<emphasis>lfs</emphasis> and not the default entry which will boot your
|
|
host system again.</para>
|
|
|
|
<para>After you have rebooted, your LFS system is ready for use and you
|
|
can start adding your own software.</para>
|
|
|
|
</sect1>
|