reboot.xml 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <?xml version="1.0" encoding="ISO-8859-1"?>
  2. <!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN" "http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd" [
  3. <!ENTITY % general-entities SYSTEM "../general.ent">
  4. %general-entities;
  5. ]>
  6. <sect1 id="ch-finish-reboot">
  7. <title>Rebooting the system</title>
  8. <?dbhtml filename="reboot.html"?>
  9. <para>Now that all of the software has been installed, it is time to reboot
  10. your computer. First exit from the chroot environment:</para>
  11. <screen><userinput>logout</userinput></screen>
  12. <para>Then unmount the virtual files systems:</para>
  13. <screen><userinput>umount $LFS/dev/pts
  14. umount $LFS/dev/shm
  15. umount $LFS/dev
  16. umount $LFS/proc
  17. umount $LFS/sys</userinput></screen>
  18. <para>And unmount the LFS file system:</para>
  19. <screen><userinput>umount $LFS</userinput></screen>
  20. <para>If at the start you decided to create multiple partitions, you'll need to
  21. unmount the other partitions before unmounting the main one, like this:</para>
  22. <screen><userinput>umount $LFS/usr
  23. umount $LFS/home
  24. umount $LFS</userinput></screen>
  25. <para>Now reboot your system with:</para>
  26. <screen><userinput>shutdown -r now</userinput></screen>
  27. <para>Assuming the Grub boot loader was set up as outlined earlier, the menu
  28. is set to boot <emphasis>LFS &milestone;</emphasis> automatically.</para>
  29. <para>When the reboot is complete, your LFS system is ready for use and you
  30. can start adding your own software.</para>
  31. </sect1>