source: chapter09/reboot.xml@ 2ec64b3

v5_1_1
Last change on this file since 2ec64b3 was 2ec64b3, checked in by lfs-dev <lfs-dev@…>, 20 years ago

This commit was manufactured by cvs2svn to create tag 'v5_1_1'.

git-svn-id: http://svn.linuxfromscratch.org/LFS/tags/v5_1_1/BOOK@3757 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

  • Property mode set to 100644
File size: 2.3 KB
Line 
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 reboot
11your computer. However, you should be aware of a few things. The system you
12have created in this book is quite minimal, and most likely will not have
13the functionality you would need to be able to continue forward. By installing
14a few extra packages from the BLFS book while still in our current chroot
15environment, you can leave yourself in a much better position to continue on
16once you reboot into your new LFS installation. Installing a text mode web
17browser, such as Lynx, you can easily view the BLFS book in one virtual
18terminal, while building packages in another. The GPM package will also allow
19you to perform copy/paste actions in your virtual terminals. Lastly, if you
20are in a situation where static IP configuration does not meet your networking
21requirements, installing packages such as dhcpcd or ppp at this point might
22also be useful.</para>
23
24
25<para>Now that we have said that, lets move on to booting our shiny new LFS
26installation for the first time! First exit from the chroot environment:</para>
27
28<screen><userinput>logout</userinput></screen>
29
30<para>Then unmount the virtual files systems:</para>
31
32<screen><userinput>umount $LFS/dev/pts
33umount $LFS/proc</userinput></screen>
34
35<para>And unmount the LFS file system:</para>
36
37<screen><userinput>umount $LFS</userinput></screen>
38
39<para>If at the start you decided to create multiple partitions, you'll need to
40unmount the other partitions before unmounting the main one, like this:</para>
41
42<screen><userinput>umount $LFS/usr
43umount $LFS/home
44umount $LFS</userinput></screen>
45
46<para>Now reboot your system with:</para>
47
48<screen><userinput>shutdown -r now</userinput></screen>
49
50<para>Assuming the Grub boot loader was set up as outlined earlier, the menu
51is set to boot <emphasis>LFS &milestone;</emphasis> automatically.</para>
52
53<para>When the reboot is complete, your LFS system is ready for use and you
54can start adding your own software.</para>
55
56</sect1>
Note: See TracBrowser for help on using the repository browser.