reboot.xml 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <?xml version="1.0" encoding="ISO-8859-1"?>
  2. <!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN" "http://www.oasis-open.org/docbook/xml/4.4/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. However, you should be aware of a few things. The system you
  11. have created in this book is quite minimal, and most likely will not have
  12. the functionality you would need to be able to continue forward. By installing
  13. a few extra packages from the BLFS book while still in our current chroot
  14. environment, you can leave yourself in a much better position to continue on
  15. once you reboot into your new LFS installation. Installing a text mode web
  16. browser, such as Lynx, you can easily view the BLFS book in one virtual
  17. terminal, while building packages in another. The GPM package will also allow
  18. you to perform copy/paste actions in your virtual terminals. Lastly, if you
  19. are in a situation where static IP configuration does not meet your networking
  20. requirements, installing packages such as Dhcpcd or PPP at this point might
  21. also be useful.</para>
  22. <para>Now that we have said that, lets move on to booting our shiny new LFS
  23. installation for the first time! First exit from the chroot environment:</para>
  24. <screen><userinput>logout</userinput></screen>
  25. <para>Then unmount the virtual files systems:</para>
  26. <screen><userinput>umount $LFS/dev/pts
  27. umount $LFS/dev/shm
  28. umount $LFS/dev
  29. umount $LFS/proc
  30. umount $LFS/sys</userinput></screen>
  31. <para>Unmount the LFS file system itself:</para>
  32. <screen><userinput>umount $LFS</userinput></screen>
  33. <para>If multiple partitions were created, unmount the other
  34. partitions before unmounting the main one, like this:</para>
  35. <screen><userinput>umount $LFS/usr
  36. umount $LFS/home
  37. umount $LFS</userinput></screen>
  38. <para>Now, reboot the system with:</para>
  39. <screen><userinput>shutdown -r now</userinput></screen>
  40. <para>Assuming the GRUB boot loader was set up as outlined earlier, the menu
  41. is set to boot <emphasis>LFS &version;</emphasis> automatically.</para>
  42. <para>When the reboot is complete, the LFS system is ready for use and
  43. more software may be added to suit your needs.</para>
  44. </sect1>