source: chapter06/grub.xml@ 6028823

10.0 10.0-rc1 10.1 10.1-rc1 11.0 11.0-rc1 11.0-rc2 11.0-rc3 11.1 11.1-rc1 11.2 11.2-rc1 11.3 11.3-rc1 12.0 12.0-rc1 12.1 12.1-rc1 6.6 6.7 6.8 7.0 7.1 7.2 7.3 7.4 7.5 7.5-systemd 7.6 7.6-systemd 7.7 7.7-systemd 7.8 7.8-systemd 7.9 7.9-systemd 8.0 8.1 8.2 8.3 8.4 9.0 9.1 arm bdubbs/gcc13 ml-11.0 multilib renodr/libudev-from-systemd s6-init trunk xry111/arm64 xry111/arm64-12.0 xry111/clfs-ng xry111/lfs-next xry111/loongarch xry111/loongarch-12.0 xry111/loongarch-12.1 xry111/mips64el xry111/pip3 xry111/rust-wip-20221008 xry111/update-glibc
Last change on this file since 6028823 was 21bbf5f, checked in by Bruce Dubbs <bdubbs@…>, 14 years ago

Typos

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

  • Property mode set to 100644
File size: 6.7 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../general.ent">
5 %general-entities;
6]>
7
8<sect1 id="ch-system-grub" role="wrap">
9 <?dbhtml filename="grub.html"?>
10
11 <sect1info condition="script">
12 <productname>grub</productname>
13 <productnumber>&grub-version;</productnumber>
14 <address>&grub-url;</address>
15 </sect1info>
16
17 <title>GRUB-&grub-version;</title>
18
19 <indexterm zone="ch-system-grub">
20 <primary sortas="a-Grub">GRUB</primary>
21 </indexterm>
22
23 <sect2 role="package">
24 <title/>
25
26 <para>The GRUB package contains the GRand Unified Bootloader.</para>
27
28 <segmentedlist>
29 <segtitle>&buildtime;</segtitle>
30 <segtitle>&diskspace;</segtitle>
31
32 <seglistitem>
33 <seg>&grub-ch6-sbu;</seg>
34 <seg>&grub-ch6-du;</seg>
35 </seglistitem>
36 </segmentedlist>
37
38 </sect2>
39
40 <sect2 role="installation">
41 <title>Installation of GRUB</title>
42
43 <para>Prepare GRUB for compilation:</para>
44
45<screen><userinput remap="configure">mkdir build
46cd build
47../configure --prefix=/usr \
48 --sysconfdir=/etc \
49 --disable-grub-emu \
50 --disable-grub-emu-usb \
51 --disable-grub-fstest \
52 --disable-efiemu</userinput></screen>
53
54 <para>Using a separate build directory keeps the 2400 generated
55 files out of the main directory and is recommended by the developers.
56 The --disable switches just minimize what is built by disabling
57 features and testing programs not really needed for LFS.</para>
58
59 <para>Compile the package:</para>
60
61<screen><userinput remap="make">make</userinput></screen>
62
63 <para>This package does not come with a test suite.</para>
64
65 <para>Install the package:</para>
66
67<screen><userinput remap="install">make install</userinput></screen>
68
69 <para>Using GRUB to make your LFS system bootable will be discussed in
70 <xref linkend="ch-bootable-grub"/>.</para>
71
72 </sect2>
73
74 <sect2 id="contents-gRUB" role="content">
75 <title>Contents of GRUB</title>
76
77 <segmentedlist>
78 <segtitle>Installed programs</segtitle>
79 <segtitle>Installed directories</segtitle>
80
81 <seglistitem>
82 <seg>grub-editenv, grub-mkelfimage, grub-mkfont, grub-mkimage,
83 grub-mkrescue, grub-dumpbios, grub-install, grub-mkconfig,
84 grub-mkdevicemap, grub-probe, grub-setup</seg>
85
86 <seg>/usr/lib/grub, /etc/grub.d, /usr/share/grub, /usr/inclue/grub</seg>
87 </seglistitem>
88 </segmentedlist>
89
90 <variablelist>
91 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
92 <?dbfo list-presentation="list"?>
93 <?dbhtml list-presentation="table"?>
94
95 <varlistentry id="grub-editenv">
96 <term><command>grub-editenv</command></term>
97 <listitem>
98 <para>A tool to edit the environment block</para>
99 <indexterm zone="ch-system-grub grub-editenv">
100 <primary sortas="b-grub-editenv">grub-editenv</primary>
101 </indexterm>
102 </listitem>
103 </varlistentry>
104
105 <varlistentry id="grub-mkelfimage">
106 <term><command>grub-mkelfimage</command></term>
107 <listitem>
108 <para>Make a bootable image of GRUB</para>
109 <indexterm zone="ch-system-grub grub-mkelfimage">
110 <primary sortas="b-grub-mkelfimage">grub-mkelfimage</primary>
111 </indexterm>
112 </listitem>
113 </varlistentry>
114
115 <varlistentry id="grub-mkfont">
116 <term><command>grub-mkfont</command></term>
117 <listitem>
118 <para>Update fonts for GRUB use</para>
119 <indexterm zone="ch-system-grub grub-mkfont">
120 <primary sortas="b-grub-mkfont">grub-mkfont</primary>
121 </indexterm>
122 </listitem>
123 </varlistentry>
124
125 <varlistentry id="grub-mkimage">
126 <term><command>grub-mkimage</command></term>
127 <listitem>
128 <para>Make a bootable image of GRUB</para>
129 <indexterm zone="ch-system-grub grub-mkimage">
130 <primary sortas="b-grub-mkimage">grub-mkimage</primary>
131 </indexterm>
132 </listitem>
133 </varlistentry>
134
135 <varlistentry id="grub-mkrescue">
136 <term><command>grub-mkrescue</command></term>
137 <listitem>
138 <para>Make a bootable image of GRUB suitable for a floppy disk</para>
139 <indexterm zone="ch-system-grub grub-mkrescue">
140 <primary sortas="b-grub-mkrescue">grub-mkrescue</primary>
141 </indexterm>
142 </listitem>
143 </varlistentry>
144
145 <varlistentry id="grub-dumpbios">
146 <term><command>grub-dumpbios</command></term>
147 <listitem>
148 <para>Create vbios and int10 dump</para>
149 <indexterm zone="ch-system-grub grub-dumpbios">
150 <primary sortas="b-grub-dumpbios">grub-dumpbios</primary>
151 </indexterm>
152 </listitem>
153 </varlistentry>
154
155 <varlistentry id="grub-install">
156 <term><command>grub-install</command></term>
157 <listitem>
158 <para>Install GRUB on your drive</para>
159 <indexterm zone="ch-system-grub grub-install">
160 <primary sortas="b-grub-install">grub-install</primary>
161 </indexterm>
162 </listitem>
163 </varlistentry>
164
165 <varlistentry id="grub-mkconfig">
166 <term><command>grub-mkconfig</command></term>
167 <listitem>
168 <para>Generate a grub config file</para>
169 <indexterm zone="ch-system-grub grub-mkconfig">
170 <primary sortas="b-grub-mkconfig">grub-mkconfig</primary>
171 </indexterm>
172 </listitem>
173 </varlistentry>
174
175 <varlistentry id="grub-mkdevicemap">
176 <term><command>grub-mkdevicemap</command></term>
177 <listitem>
178 <para>Generate a device map file automatically</para>
179 <indexterm zone="ch-system-grub grub-mkdevicemap">
180 <primary sortas="b-grub-mkdevicemap">grub-mkdevicemap</primary>
181 </indexterm>
182 </listitem>
183 </varlistentry>
184
185 <varlistentry id="grub-probe">
186 <term><command>grub-probe</command></term>
187 <listitem>
188 <para>Probe device information for a given path or device</para>
189 <indexterm zone="ch-system-grub grub-probe">
190 <primary sortas="b-grub-probe">grub-probe</primary>
191 </indexterm>
192 </listitem>
193 </varlistentry>
194
195 <varlistentry id="grub-setup">
196 <term><command>grub-setup</command></term>
197 <listitem>
198 <para>Set up images to boot from a device</para>
199 <indexterm zone="ch-system-grub grub-setup">
200 <primary sortas="b-grub-setup">grub-setup</primary>
201 </indexterm>
202 </listitem>
203 </varlistentry>
204
205 </variablelist>
206
207 </sect2>
208
209</sect1>
Note: See TracBrowser for help on using the repository browser.