Ignore:
Timestamp:
01/06/2006 02:59:05 AM (19 years ago)
Author:
Jeremy Huntwork <jhuntwork@…>
Children:
e1ca33a
Parents:
1714f1a
Message:

Merged recent changes from trunk to lfs-alpha. Fixed typo.

git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/alphabetical/BOOK@7248 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

File:
1 edited

Legend:

Unmodified
Added
Removed
  • chapter09/reboot.xml

    r1714f1a r46a2e9c  
    11<?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" [
     2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN"
     3  "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" [
    34  <!ENTITY % general-entities SYSTEM "../general.ent">
    45  %general-entities;
    56]>
     7
    68<sect1 id="ch-finish-reboot">
    7 <title>Rebooting the System</title>
    8 <?dbhtml filename="reboot.html"?>
     9  <?dbhtml filename="reboot.html"?>
    910
    10 <para>Now that all of the software has been installed, it is time to reboot
    11 your computer. However, you should be aware of a few things.  The system you
    12 have created in this book is quite minimal, and most likely will not have
    13 the functionality you would need to be able to continue forward.  By installing
    14 a few extra packages from the BLFS book while still in our current chroot
    15 environment, you can leave yourself in a much better position to continue on
    16 once you reboot into your new LFS installation.  Installing a text mode web
    17 browser, such as Lynx, you can easily view the BLFS book in one virtual
    18 terminal, while building packages in another.  The GPM package will also allow
    19 you to perform copy/paste actions in your virtual terminals.  Lastly, if you
    20 are in a situation where static IP configuration does not meet your networking
    21 requirements, installing packages such as Dhcpcd or PPP at this point might
    22 also be useful.</para>
     11  <title>Rebooting the System</title>
     12
     13  <para>Now that all of the software has been installed, it is time to reboot
     14  your computer. However, you should be aware of a few things. The system you
     15  have created in this book is quite minimal, and most likely will not have
     16  the functionality you would need to be able to continue forward. By installing
     17  a few extra packages from the BLFS book while still in our current chroot
     18  environment, you can leave yourself in a much better position to continue on
     19  once you reboot into your new LFS installation. Installing a text mode web
     20  browser, such as Lynx, you can easily view the BLFS book in one virtual
     21  terminal, while building packages in another. The GPM package will also allow
     22  you to perform copy/paste actions in your virtual terminals. Lastly, if you
     23  are in a situation where static IP configuration does not meet your networking
     24  requirements, installing packages such as Dhcpcd or PPP at this point might
     25  also be useful.</para>
    2326
    2427
    25 <para>Now that we have said that, lets move on to booting our shiny new LFS
    26 installation for the first time! First exit from the chroot environment:</para>
     28  <para>Now that we have said that, lets move on to booting our shiny new LFS
     29  installation for the first time! First exit from the chroot environment:</para>
    2730
    2831<screen><userinput>logout</userinput></screen>
    2932
    30 <para>Then unmount the virtual files systems:</para>
     33  <para>Then unmount the virtual files systems:</para>
    3134
    3235<screen><userinput>umount -v $LFS/dev/pts
     
    3437umount -v $LFS/dev
    3538umount -v $LFS/proc
    36 umount -v $LFS/sys</userinput></screen>   
     39umount -v $LFS/sys</userinput></screen>
    3740
    38 <para>Unmount the LFS file system itself:</para>
     41  <para>Unmount the LFS file system itself:</para>
    3942
    4043<screen><userinput>umount -v $LFS</userinput></screen>
    4144
    42 <para>If multiple partitions were created, unmount the other
    43 partitions before unmounting the main one, like this:</para>
     45  <para>If multiple partitions were created, unmount the other
     46  partitions before unmounting the main one, like this:</para>
    4447
    4548<screen role="nodump"><userinput>umount -v $LFS/usr
     
    4750umount -v $LFS</userinput></screen>
    4851
    49 <para>Now, reboot the system with:</para>
     52  <para>Now, reboot the system with:</para>
    5053
    5154<screen role="nodump"><userinput>shutdown -r now</userinput></screen>
    5255
    53 <para>Assuming the GRUB boot loader was set up as outlined earlier, the menu
    54 is set to boot <emphasis>LFS &version;</emphasis> automatically.</para>
     56  <para>Assuming the GRUB boot loader was set up as outlined earlier, the menu
     57  is set to boot <emphasis>LFS &version;</emphasis> automatically.</para>
    5558
    56 <para>When the reboot is complete, the LFS system is ready for use and
    57 more software may be added to suit your needs.</para>
     59  <para>When the reboot is complete, the LFS system is ready for use and
     60  more software may be added to suit your needs.</para>
    5861
    5962</sect1>
    60 
Note: See TracChangeset for help on using the changeset viewer.