reboot.xml 1.0 KB

12345678910111213141516171819202122232425262728293031
  1. <sect1 id="ch09-reboot">
  2. <title>Rebooting the system</title>
  3. <?dbhtml filename="reboot.html" dir="chapter09"?>
  4. <para>Now that all of the software has been installed, it's time to reboot
  5. the computer. Before we reboot, let's unmount $LFS/proc and the LFS
  6. partition itself by running:</para>
  7. <para><screen><userinput>umount $LFS/proc
  8. umount $LFS</userinput></screen></para>
  9. <para>If you decided to create multiple partitions, you need to umount the
  10. other partitions before you umount $LFS, like this:</para>
  11. <para><screen><userinput>umount $LFS/proc
  12. umount $LFS/usr
  13. umount $LFS/home
  14. umount $LFS</userinput></screen></para>
  15. <para>And you can reboot your system by running something like:</para>
  16. <para><screen><userinput>/sbin/shutdown -r now</userinput></screen></para>
  17. <para>At the Grub menu make sure that you tell it to boot
  18. <emphasis>lfs</emphasis> and not the default entry which will boot your
  19. host system again.</para>
  20. <para>After you have rebooted, your LFS system is ready for use and you
  21. can start adding your own software.</para>
  22. </sect1>