From 4122675955205cb1f633f10b1cb23f344f3e0f42 Mon Sep 17 00:00:00 2001 From: Archaic Date: Sat, 2 Jul 2005 18:00:19 +0000 Subject: Standardized capitalization of GRUB. git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@6339 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689 --- chapter08/grub.xml | 30 +++++++++++++++--------------- chapter08/introduction.xml | 2 +- 2 files changed, 16 insertions(+), 16 deletions(-) (limited to 'chapter08') diff --git a/chapter08/grub.xml b/chapter08/grub.xml index d962d4e6f..d9e7325f1 100644 --- a/chapter08/grub.xml +++ b/chapter08/grub.xml @@ -8,7 +8,7 @@ -Grub +GRUB configuring Your shiny new LFS system is almost complete. One of the last @@ -25,10 +25,10 @@ bootable. Make sure that an emergency boot disk is ready to rescue the computer if the computer becomes unusable (un-bootable). -Earlier, we compiled and installed the Grub boot loader software +Earlier, we compiled and installed the GRUB boot loader software in preparation for this step. The procedure involves writing some -special Grub files to specific locations on the hard drive. We highly -recommend creating a Grub boot floppy diskette as a backup. Insert a +special GRUB files to specific locations on the hard drive. We highly +recommend creating a GRUB boot floppy diskette as a backup. Insert a blank floppy diskette and run the following commands: dd if=/boot/grub/stage1 of=/dev/fd0 bs=512 count=1 @@ -39,13 +39,13 @@ dd if=/boot/grub/stage2 of=/dev/fd0 bs=512 seek=1 grub -Grub uses its own naming structure for drives and partitions in +GRUB uses its own naming structure for drives and partitions in the form of (hdn,m), where n is the hard drive number and m is the partition number, both starting from zero. For example, partition hda1 is (hd0,0) to -Grub and hdb3 is -(hd1,2). In contrast to Linux, Grub does not +GRUB and hdb3 is +(hd1,2). In contrast to Linux, GRUB does not consider CD-ROM drives to be hard drives. For example, if using a CD on hdb and a second hard drive on hdc, that second hard drive @@ -57,9 +57,9 @@ one is used). For the following example, it is assumed that the root (or separate boot) partition is hda4. -Tell Grub where to search for its +Tell GRUB where to search for its stage{1,2} files. The Tab key can be used -everywhere to make Grub show the alternatives: +everywhere to make GRUB show the alternatives: root (hd0,3) @@ -67,22 +67,22 @@ everywhere to make Grub show the alternatives: loader. Do not run the command if this is not desired, for example, if using a third party boot manager to manage the Master Boot Record (MBR). In this scenario, it would make more sense to install -Grub into the boot sector of the LFS partition. In this +GRUB into the boot sector of the LFS partition. In this case, this next command would become setup (hd0,3). -Tell Grub to install itself into the MBR of +Tell GRUB to install itself into the MBR of hda: setup (hd0) -If all went well, Grub will have reported finding its files in +If all went well, GRUB will have reported finding its files in /boot/grub. That's all there is to it. Quit the grub shell: quit -Create a menu list file defining Grub's boot menu: +Create a menu list file defining GRUB's boot menu: cat > /boot/grub/menu.lst << "EOF" # Begin /boot/grub/menu.lst @@ -122,10 +122,10 @@ chainloader +1 EOF If info grub does not provide all necessary material, additional -information regarding Grub is located on its website at: +information regarding GRUB is located on its website at: . -The FHS stipulates that Grub's menu.lst file should be symlinked to +The FHS stipulates that GRUB's menu.lst file should be symlinked to /etc/grub/menu.lst. To satisfy this requirement, issue the following command: diff --git a/chapter08/introduction.xml b/chapter08/introduction.xml index 6fa80cadc..95bb37f7d 100644 --- a/chapter08/introduction.xml +++ b/chapter08/introduction.xml @@ -9,7 +9,7 @@ It is time to make the LFS system bootable. This chapter discusses creating an fstab file, building a -kernel for the new LFS system, and installing the Grub boot loader so +kernel for the new LFS system, and installing the GRUB boot loader so that the LFS system can be selected for booting at startup. -- cgit v1.2.3-54-g00ecf