mirror of
https://git.linuxfromscratch.org/lfs.git
synced 2025-01-19 05:27:39 +00:00
673b0d84ba
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@3435 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
42 lines
1.4 KiB
XML
42 lines
1.4 KiB
XML
<?xml version="1.0" encoding="ISO-8859-1"?>
|
|
<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN" "http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd" [
|
|
<!ENTITY % general-entities SYSTEM "../general.ent">
|
|
%general-entities;
|
|
]>
|
|
<sect1 id="ch-finish-reboot">
|
|
<title>Rebooting the system</title>
|
|
<?dbhtml filename="reboot.html"?>
|
|
|
|
<para>Now that all of the software has been installed, it is time to reboot
|
|
your computer. First exit from the chroot environment:</para>
|
|
|
|
<screen><userinput>logout</userinput></screen>
|
|
|
|
<para>Then unmount the virtual files systems:</para>
|
|
|
|
<screen><userinput>umount $LFS/dev/pts
|
|
umount $LFS/proc</userinput></screen>
|
|
|
|
<para>And unmount the LFS file system:</para>
|
|
|
|
<screen><userinput>umount $LFS</userinput></screen>
|
|
|
|
<para>If at the start you decided to create multiple partitions, you'll need to
|
|
unmount the other partitions before unmounting the main one, like this:</para>
|
|
|
|
<screen><userinput>umount $LFS/usr
|
|
umount $LFS/home
|
|
umount $LFS</userinput></screen>
|
|
|
|
<para>Now reboot your system with:</para>
|
|
|
|
<screen><userinput>shutdown -r now</userinput></screen>
|
|
|
|
<para>Assuming the Grub boot loader was set up as outlined earlier, the menu
|
|
is set to boot <emphasis>LFS &milestone;</emphasis> automatically.</para>
|
|
|
|
<para>When the reboot is complete, your LFS system is ready for use and you
|
|
can start adding your own software.</para>
|
|
|
|
</sect1>
|