reboot.xml 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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. <blockquote><literallayout>
  9. <userinput>umount $LFS/proc &amp;&amp;</userinput>
  10. <userinput>umount $LFS</userinput>
  11. </literallayout></blockquote>
  12. <para>
  13. And you can reboot your system by running something like:
  14. </para>
  15. <blockquote><literallayout>
  16. <userinput>/sbin/shutdown -r now</userinput>
  17. </literallayout></blockquote>
  18. <para>
  19. At the LILO: prompt make sure that you tell it to boot
  20. <emphasis>lfs</emphasis> and not the default entry which will boot your
  21. host system again.
  22. </para>
  23. <para>
  24. During the first boot you will get a few errors from syslogd and klogd.
  25. These errors occur because we haven't setup networking yet. That will
  26. be taken care of in the next chapter. So don't worry about those errors
  27. for now.
  28. </para>
  29. <para>
  30. As just stated, one thing remains to be done and that's setting up
  31. networking. After having rebooted and finished the next chapter of this
  32. book the LFS system is completely ready for use, and you can start
  33. adding your own software.
  34. </para>
  35. </sect1>