reboot.xml 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <sect1 id="ch08-reboot">
  2. <title>Rebooting the system</title>
  3. <para>
  4. Now that all software has been installed, bootscripts have been created,
  5. it's time to reboot the computer. Before we reboot let's exit the
  6. chroot'ed environment first and unmount the LFS partition by running:
  7. </para>
  8. <para>
  9. <screen>
  10. <userinput>umount $LFS/proc &amp;&amp;</userinput>
  11. <userinput>umount $LFS</userinput>
  12. </screen>
  13. </para>
  14. <para>
  15. And you can reboot your system by running something like:
  16. </para>
  17. <para>
  18. <screen>
  19. <userinput>/sbin/shutdown -r now</userinput>
  20. </screen>
  21. </para>
  22. <para>
  23. At the LILO: prompt make sure that you tell it to boot
  24. <emphasis>lfs</emphasis> and not the default entry which will boot your
  25. host system again.
  26. </para>
  27. <para>
  28. During the first boot you will get a few errors from syslogd and klogd.
  29. These errors occur because we haven't setup networking yet. That will
  30. be taken care of in the next chapter. So don't worry about those errors
  31. for now.
  32. </para>
  33. <para>
  34. As just stated, one thing remains to be done and that's setting up
  35. networking. After having rebooted and finished the next chapter of this
  36. book the LFS system is completely ready for use, and you can start
  37. adding your own software.
  38. </para>
  39. </sect1>