| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 | <?xml version="1.0" encoding="ISO-8859-1"?><!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN" "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" [  <!ENTITY % general-entities SYSTEM "../general.ent">  %general-entities;]><sect1 id="ch-finish-reboot"><title>Rebooting the System</title><?dbhtml filename="reboot.html"?><para>Now that all of the software has been installed, it is time to rebootyour computer. However, you should be aware of a few things.  The system youhave created in this book is quite minimal, and most likely will not havethe functionality you would need to be able to continue forward.  By installinga few extra packages from the BLFS book while still in our current chrootenvironment, you can leave yourself in a much better position to continue ononce you reboot into your new LFS installation.  Installing a text mode webbrowser, such as Lynx, you can easily view the BLFS book in one virtualterminal, while building packages in another.  The GPM package will also allowyou to perform copy/paste actions in your virtual terminals.  Lastly, if youare in a situation where static IP configuration does not meet your networkingrequirements, installing packages such as Dhcpcd or PPP at this point mightalso be useful.</para> <para>Now that we have said that, lets move on to booting our shiny new LFSinstallation for the first time! First exit from the chroot environment:</para><screen><userinput>logout</userinput></screen><para>Stop the <command>udevd</command> daemon that Udev started earlier, then unmount the virtual files systems:</para><screen><userinput>pkill udevdumount $LFS/dev/ptsumount $LFS/dev/shmumount $LFS/devumount $LFS/procumount $LFS/sys</userinput></screen>    <para>Unmount the LFS file system itself:</para><screen><userinput>umount $LFS</userinput></screen><para>If multiple partitions were created, unmount the otherpartitions before unmounting the main one, like this:</para><screen role="nodump"><userinput>umount $LFS/usrumount $LFS/homeumount $LFS</userinput></screen><para>Now, reboot the system with:</para><screen role="nodump"><userinput>shutdown -r now</userinput></screen><para>Assuming the GRUB boot loader was set up as outlined earlier, the menuis set to boot <emphasis>LFS &version;</emphasis> automatically.</para><para>When the reboot is complete, the LFS system is ready for use andmore software may be added to suit your needs.</para></sect1>
 |