From e12115e329edd4660dac5f86f03992e274ba7c9f Mon Sep 17 00:00:00 2001 From: Gerard Beekmans Date: Wed, 26 Sep 2001 00:35:10 +0000 Subject: [PATCH] added tag for output redirection into subdir git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@1268 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689 --- chapter07/chapter07.xml | 1 + chapter07/checkfs.xml | 1 + chapter07/createdirs.xml | 1 + chapter07/ethnet.xml | 1 + chapter07/functions.xml | 1 + chapter07/halt.xml | 1 + chapter07/hosts.xml | 1 + chapter07/introduction.xml | 1 + chapter07/loadkeys.xml | 1 + chapter07/localnet.xml | 1 + chapter07/mountfs.xml | 1 + chapter07/network.xml | 1 + chapter07/rc.xml | 1 + chapter07/rcS.xml | 1 + chapter07/reboot.xml | 1 + chapter07/sendsignals.xml | 1 + chapter07/setclock.xml | 2 ++ chapter07/symperm.xml | 1 + chapter07/sysklogd.xml | 1 + chapter07/template.xml | 1 + chapter07/usage.xml | 1 + chapter08/chapter08.xml | 1 + chapter08/fstab.xml | 1 + chapter08/introduction.xml | 1 + chapter08/kernel.xml | 1 + chapter08/lilo.xml | 1 + chapter09/chapter09.xml | 1 + chapter09/reboot.xml | 1 + chapter09/theend.xml | 1 + 29 files changed, 30 insertions(+) diff --git a/chapter07/chapter07.xml b/chapter07/chapter07.xml index 290739dbf..5b1cdb8ad 100644 --- a/chapter07/chapter07.xml +++ b/chapter07/chapter07.xml @@ -1,5 +1,6 @@ Creating system boot scripts + &c7-introduction; &c7-usage; diff --git a/chapter07/checkfs.xml b/chapter07/checkfs.xml index caa04f09c..9f3f83283 100644 --- a/chapter07/checkfs.xml +++ b/chapter07/checkfs.xml @@ -1,5 +1,6 @@ Creating the checkfs script + Create the /etc/init.d/checkfs script by running the following command: diff --git a/chapter07/createdirs.xml b/chapter07/createdirs.xml index dbf5621f2..0cca02dcc 100644 --- a/chapter07/createdirs.xml +++ b/chapter07/createdirs.xml @@ -1,5 +1,6 @@ Creating directories + We need to start by creating a few extra directories that are used by the boot scripts. These directories are created by running: diff --git a/chapter07/ethnet.xml b/chapter07/ethnet.xml index 49a2c3f1c..67e6d9640 100644 --- a/chapter07/ethnet.xml +++ b/chapter07/ethnet.xml @@ -1,5 +1,6 @@ Creating the ethnet script + This section only applies if a user is going to configure a network card. If not, this section can be skipped. diff --git a/chapter07/functions.xml b/chapter07/functions.xml index d9ba8f6f8..e10c1ab57 100644 --- a/chapter07/functions.xml +++ b/chapter07/functions.xml @@ -1,5 +1,6 @@ Creating the functions script + Create the /etc/init.d/functions script by running the following command: diff --git a/chapter07/halt.xml b/chapter07/halt.xml index 3272dcab2..b9f7c3399 100644 --- a/chapter07/halt.xml +++ b/chapter07/halt.xml @@ -1,5 +1,6 @@ Creating the halt script + Create the /etc/init.d/halt script by running the following command: diff --git a/chapter07/hosts.xml b/chapter07/hosts.xml index dbeb337d1..9e36d8320 100644 --- a/chapter07/hosts.xml +++ b/chapter07/hosts.xml @@ -1,5 +1,6 @@ Creating the /etc/hosts file + If a network card is to be configured, you have to decide on the IP-address, FQDN and possible aliases for use in the /etc/hosts file. An diff --git a/chapter07/introduction.xml b/chapter07/introduction.xml index 4c9937c47..a062e0615 100644 --- a/chapter07/introduction.xml +++ b/chapter07/introduction.xml @@ -1,5 +1,6 @@ Introduction + This chapter will create the necessary scripts that are run at boot time. These scripts perform tasks such as remounting the root file system diff --git a/chapter07/loadkeys.xml b/chapter07/loadkeys.xml index 11b500621..505117a28 100644 --- a/chapter07/loadkeys.xml +++ b/chapter07/loadkeys.xml @@ -1,5 +1,6 @@ Creating the loadkeys script + You only need to create this script if you don't have a default 101 keys US keyboard layout. diff --git a/chapter07/localnet.xml b/chapter07/localnet.xml index 7cd9d7db9..389f12988 100644 --- a/chapter07/localnet.xml +++ b/chapter07/localnet.xml @@ -1,5 +1,6 @@ Creating the localnet script + Create the /etc/init.d/localnet script by running the following command: diff --git a/chapter07/mountfs.xml b/chapter07/mountfs.xml index a21e6fdad..99df6c181 100644 --- a/chapter07/mountfs.xml +++ b/chapter07/mountfs.xml @@ -1,5 +1,6 @@ Creating the mountfs script + Create the /etc/init.d/mountfs script by running the following command: diff --git a/chapter07/network.xml b/chapter07/network.xml index 8e3b84b99..b710af4aa 100644 --- a/chapter07/network.xml +++ b/chapter07/network.xml @@ -1,5 +1,6 @@ Creating the /etc/sysconfig/network file + A new file /etc/sysconfig/network is created and the hostname is put in it by running: diff --git a/chapter07/rc.xml b/chapter07/rc.xml index 2adf65bdd..8f9794691 100644 --- a/chapter07/rc.xml +++ b/chapter07/rc.xml @@ -1,5 +1,6 @@ Creating the rc script + The first main boot script is the /etc/init.d/rc script. Create the /etc/init.d/rc script by running the diff --git a/chapter07/rcS.xml b/chapter07/rcS.xml index b86c7c9a2..7b98bac87 100644 --- a/chapter07/rcS.xml +++ b/chapter07/rcS.xml @@ -1,5 +1,6 @@ Creating the rcS script + The second main boot script is the rcS script. Create the /etc/init.d/rcS script by running the following diff --git a/chapter07/reboot.xml b/chapter07/reboot.xml index 1e07ca70b..cc18a4f11 100644 --- a/chapter07/reboot.xml +++ b/chapter07/reboot.xml @@ -1,5 +1,6 @@ Creating the reboot script + Create the /etc/init.d/reboot script by running the following command: diff --git a/chapter07/sendsignals.xml b/chapter07/sendsignals.xml index a0146be36..abe5e2c20 100644 --- a/chapter07/sendsignals.xml +++ b/chapter07/sendsignals.xml @@ -1,5 +1,6 @@ Creating the sendsignals script + Create the /etc/init.d/sendsignals script by running the following command: diff --git a/chapter07/setclock.xml b/chapter07/setclock.xml index cf53c5ecd..0c84eb7b7 100644 --- a/chapter07/setclock.xml +++ b/chapter07/setclock.xml @@ -1,5 +1,7 @@ Creating the setclock script + + The following script is only for real use when the hardware clock (also known as BIOS or CMOS clock) isn't set to GMT time. The recommended diff --git a/chapter07/symperm.xml b/chapter07/symperm.xml index d047a5d41..c774eb9b1 100644 --- a/chapter07/symperm.xml +++ b/chapter07/symperm.xml @@ -1,5 +1,6 @@ Setting up symlinks and permissions + These files get the proper permissions and the necessary symlinks are created by running the following commands. If you didn't create the loadkeys diff --git a/chapter07/sysklogd.xml b/chapter07/sysklogd.xml index 4537f0d1e..3f217e856 100644 --- a/chapter07/sysklogd.xml +++ b/chapter07/sysklogd.xml @@ -1,5 +1,6 @@ Creating the sysklogd script + Create the /etc/init.d/sysklogd script by running the following command: diff --git a/chapter07/template.xml b/chapter07/template.xml index cc61cb9ef..e5168cb70 100644 --- a/chapter07/template.xml +++ b/chapter07/template.xml @@ -1,5 +1,6 @@ Creating the template script + Create the /etc/init.d/template script by running the following command: diff --git a/chapter07/usage.xml b/chapter07/usage.xml index 37808fec3..0527f450d 100644 --- a/chapter07/usage.xml +++ b/chapter07/usage.xml @@ -1,5 +1,6 @@ How does the booting process with these scripts work? + Linux uses a special booting facility named SysVinit. It's based on a concept of runlevels. It can be widely different diff --git a/chapter08/chapter08.xml b/chapter08/chapter08.xml index c83016fbc..2b6e70ab7 100644 --- a/chapter08/chapter08.xml +++ b/chapter08/chapter08.xml @@ -1,5 +1,6 @@ Making the LFS system bootable + &c8-introduction; &c8-fstab; diff --git a/chapter08/fstab.xml b/chapter08/fstab.xml index cf0800025..df4ecd3db 100644 --- a/chapter08/fstab.xml +++ b/chapter08/fstab.xml @@ -1,5 +1,6 @@ Creating the /etc/fstab file + In order for certain programs to be able to determine where certain partitions are supposed to be mounted by default, the /etc/fstab file is diff --git a/chapter08/introduction.xml b/chapter08/introduction.xml index c1500a429..577912223 100644 --- a/chapter08/introduction.xml +++ b/chapter08/introduction.xml @@ -1,5 +1,6 @@ Introduction + This chapter will make LFS bootable. This chapter deals with creating a new fstab file, building a diff --git a/chapter08/kernel.xml b/chapter08/kernel.xml index 95637e211..73f9dad23 100644 --- a/chapter08/kernel.xml +++ b/chapter08/kernel.xml @@ -1,5 +1,6 @@ Installing a kernel + Estimated build time: &kernel-time; Estimated required disk space: &kernel-compsize; diff --git a/chapter08/lilo.xml b/chapter08/lilo.xml index 6425bccc4..411c2a6b3 100644 --- a/chapter08/lilo.xml +++ b/chapter08/lilo.xml @@ -1,5 +1,6 @@ Making the LFS system bootable + In order to be able to boot the LFS system, we need to update our bootloader. We're assuming that your host system is using Lilo (since diff --git a/chapter09/chapter09.xml b/chapter09/chapter09.xml index ac84eec1d..f3f334690 100644 --- a/chapter09/chapter09.xml +++ b/chapter09/chapter09.xml @@ -1,5 +1,6 @@ The End + &c9-theend; &c9-reboot; diff --git a/chapter09/reboot.xml b/chapter09/reboot.xml index 77ab9fc6b..828e6e418 100644 --- a/chapter09/reboot.xml +++ b/chapter09/reboot.xml @@ -1,5 +1,6 @@ Rebooting the system + Now that all software has been installed, bootscripts have been created, it's time to reboot the computer. Before we reboot let's unmount diff --git a/chapter09/theend.xml b/chapter09/theend.xml index d8bcbc4d1..fa4a7d46a 100644 --- a/chapter09/theend.xml +++ b/chapter09/theend.xml @@ -1,5 +1,6 @@ The End + Well done! You have finished installing your LFS system. It may have been a long process but it was well worth it. We wish you a lot of fun