source: chapter11/reboot.xml@ fa8a0f2f

xry111/clfs-ng
Last change on this file since fa8a0f2f was fa8a0f2f, checked in by Xi Ruoyao <xry111@…>, 2 years ago

cross-ng: adjust reboot command for new clfs

  • Property mode set to 100644
File size: 4.6 KB
RevLine 
[673b0d8]1<?xml version="1.0" encoding="ISO-8859-1"?>
[b06ca36]2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
[673b0d8]4 <!ENTITY % general-entities SYSTEM "../general.ent">
5 %general-entities;
6]>
[7686ca6]7
[3be4d97]8<sect1 id="ch-finish-reboot">
[7686ca6]9 <?dbhtml filename="reboot.html"?>
10
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
[eec1ca9]19 once you reboot into your new LFS installation. Here are some suggestions:</para>
[2ca8941]20
[eec1ca9]21 <itemizedlist>
[7686ca6]22
[d735604]23 <listitem><para>A text mode browser such as <ulink
24 url='&blfs-book;basicnet/lynx.html'>Lynx</ulink>
[eec1ca9]25 will allow you to easily view the BLFS book in one virtual terminal, while
26 building packages in another.</para></listitem>
27
[d735604]28 <listitem><para>The <ulink
29 url='&blfs-book;postlfs/make-ca.html'>make-ca</ulink> package
[af548cd]30 will allow you to set up local trusted anchor certificates, allowing
31 the system to verify SSL certificates provided by remote servers (for
32 example, a website using HTTPS).</para></listitem>
33
[d735604]34 <listitem><para>The <ulink
35 url='&blfs-book;general/gpm.html'>GPM</ulink> package will allow
[eec1ca9]36 you to perform copy/paste actions in your virtual
37 terminals.</para></listitem>
38
[ec3d6a2]39 <listitem revision="sysv"><para>
40 If you are in a situation where static IP configuration
[eec1ca9]41 does not meet your networking requirements, installing a package
[0ee07e5]42 such as <ulink url='&blfs-book;basicnet/dhcpcd.html'>dhcpcd</ulink>
[eec1ca9]43 or the client portion of <ulink
[0ee07e5]44 url='&blfs-book;basicnet/dhcp.html'>dhcp</ulink> may be
[eec1ca9]45 useful.</para></listitem>
46
[d735604]47 <listitem><para>Installing <ulink
48 url='&blfs-book;postlfs/sudo.html'>sudo</ulink> may be useful for
[eec1ca9]49 building packages as a non-root user and easily installing the resulting
[3443abb]50 packages in your new system.</para></listitem>
[eec1ca9]51
52 <listitem><para>If you want to access your new system from a remote system
[d735604]53 within a comfortable GUI environment, install <ulink
54 url='&blfs-book;postlfs/openssh.html'>openssh</ulink>.</para></listitem>
[eec1ca9]55
[2ca8941]56 <listitem><para>To make fetching files over the internet easier, install
[d735604]57 <ulink url='&blfs-book;basicnet/wget.html'>wget</ulink>.</para></listitem>
[86b1ebc]58
[3089d45]59 <listitem><para>To connect to a wireless access point for networking,
[d735604]60 install <ulink
61 url='&blfs-book;basicnet/wpa_supplicant.html'>wpa_supplicant</ulink>.
[3089d45]62 </para></listitem>
63
[2ca8941]64 <listitem><para>Finally, a review of the following configuration files
[3443abb]65 is also appropriate at this point.</para>
[eec1ca9]66
[86b1ebc]67 <itemizedlist>
68 <listitem><para>/etc/bashrc </para></listitem>
69 <listitem><para>/etc/dircolors </para></listitem>
70 <listitem><para>/etc/fstab </para></listitem>
71 <listitem><para>/etc/hosts </para></listitem>
72 <listitem><para>/etc/inputrc </para></listitem>
73 <listitem><para>/etc/profile </para></listitem>
74 <listitem><para>/etc/resolv.conf </para></listitem>
75 <listitem><para>/etc/vimrc </para></listitem>
76 <listitem><para>/root/.bash_profile </para></listitem>
77 <listitem><para>/root/.bashrc </para></listitem>
[1118b17]78 <listitem revision="sysv"><para>/etc/sysconfig/ifconfig.eth0 </para></listitem>
[86b1ebc]79 </itemizedlist>
80 </listitem>
[eec1ca9]81 </itemizedlist>
[7686ca6]82
[15458da]83 <para>Now that we have said that, let's move on to booting our shiny new LFS
[fa8a0f2f]84 installation for the first time!</para>
[81fd230]85
[fa8a0f2f]86 <para>Synchronize cached writes to prevent data loss on reboot without a
87 fully functional <command>init</command> process:</para>
[81fd230]88
[fa8a0f2f]89<screen role="nodump"><userinput>sync</userinput></screen>
[37b5ac1]90
[7686ca6]91 <para>Now, reboot the system with:</para>
[81fd230]92
[fa8a0f2f]93<screen role="nodump"><userinput>reboot -ff</userinput></screen>
94
95 <para><parameter>-ff</parameter> option allows to reboot the system
96 without support from the <command>init</command> process.</para>
[5ba7054]97
[7686ca6]98 <para>Assuming the GRUB boot loader was set up as outlined earlier, the menu
99 is set to boot <emphasis>LFS &version;</emphasis> automatically.</para>
[81fd230]100
[7686ca6]101 <para>When the reboot is complete, the LFS system is ready for use and
102 more software may be added to suit your needs.</para>
[81fd230]103
[5ba7054]104</sect1>
Note: See TracBrowser for help on using the repository browser.