reboot.xml 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  1. <sect1 id="ch-finish-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 is time to reboot
  5. your computer. First exit from the chroot environment:</para>
  6. <screen><userinput>logout</userinput></screen>
  7. <para>Then unmount the virtual files systems:</para>
  8. <screen><userinput>umount /dev/pts
  9. umount /proc</userinput></screen>
  10. <para>And unmount the LFS file system:</para>
  11. <screen><userinput>umount $LFS</userinput></screen>
  12. <para>If at the start you decided to create multiple partitions, you'll need to
  13. unmount the other partitions before unmounting the main one, like this:</para>
  14. <screen><userinput>umount $LFS/usr
  15. umount $LFS/home
  16. umount $LFS</userinput></screen>
  17. <para>Now reboot your system with:</para>
  18. <screen><userinput>shutdown -r now</userinput></screen>
  19. <para>Assuming the Grub boot loader was set up as outlined earlier, the menu
  20. is set to boot <emphasis>LFS &milestone;</emphasis> automatically.</para>
  21. <para>When the reboot is complete, your LFS system is ready for use and you
  22. can start adding your own software.</para>
  23. </sect1>