reboot.xml 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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. <!--
  10. <para>Now that all of the software has been installed, it is time to
  11. reboot the computer. First exit from the chroot environment:</para>
  12. -->
  13. <screen><userinput>logout</userinput></screen>
  14. <!--
  15. <para>Then unmount the virtual files systems:</para>
  16. -->
  17. <screen><userinput>umount $LFS/dev/pts
  18. umount $LFS/dev/shm
  19. umount $LFS/dev
  20. umount $LFS/proc
  21. umount $LFS/sys</userinput></screen>
  22. <!--
  23. <para>Unmount the LFS file system itself:</para>
  24. -->
  25. <screen><userinput>umount $LFS</userinput></screen>
  26. <para>If multiple partitions were created, unmount the other
  27. partitions before unmounting the main one, like this:</para>
  28. <screen><userinput>umount $LFS/usr
  29. umount $LFS/home
  30. umount $LFS</userinput></screen>
  31. <!--
  32. <para>Now, reboot the system with:</para>
  33. -->
  34. <screen><userinput>shutdown -r now</userinput></screen>
  35. <!--
  36. <para>Assuming the Grub boot loader was set up as outlined earlier, the menu
  37. is set to boot <emphasis>LFS &version;</emphasis> automatically.</para>
  38. <para>When the reboot is complete, the LFS system is ready for use and
  39. software can be added.</para>
  40. -->
  41. </sect1>