grub-mkconfig/10_linux: Support multiple early initrd images
[grub.git] / docs / grub.texi
1 \input texinfo
2 @c -*-texinfo-*-
3 @c %**start of header
4 @setfilename grub.info
5 @include version.texi
6 @settitle GNU GRUB Manual @value{VERSION}
7 @c Unify all our little indices for now.
8 @syncodeindex fn cp
9 @syncodeindex vr cp
10 @syncodeindex ky cp
11 @syncodeindex pg cp
12 @syncodeindex tp cp
13 @c %**end of header
14
15 @footnotestyle separate
16 @paragraphindent 3
17 @finalout
18
19 @copying
20 This manual is for GNU GRUB (version @value{VERSION},
21 @value{UPDATED}).
22
23 Copyright @copyright{} 1999,2000,2001,2002,2004,2006,2008,2009,2010,2011,2012,2013 Free Software Foundation, Inc.
24
25 @quotation
26 Permission is granted to copy, distribute and/or modify this document
27 under the terms of the GNU Free Documentation License, Version 1.2 or
28 any later version published by the Free Software Foundation; with no
29 Invariant Sections.
30 @end quotation
31 @end copying
32
33 @dircategory Kernel
34 @direntry
35 * GRUB: (grub).                 The GRand Unified Bootloader
36 * grub-install: (grub)Invoking grub-install.    Install GRUB on your drive
37 * grub-mkconfig: (grub)Invoking grub-mkconfig.  Generate GRUB configuration
38 * grub-mkpasswd-pbkdf2: (grub)Invoking grub-mkpasswd-pbkdf2.
39 * grub-mkrelpath: (grub)Invoking grub-mkrelpath.
40 * grub-mkrescue: (grub)Invoking grub-mkrescue.  Make a GRUB rescue image
41 * grub-mount: (grub)Invoking grub-mount.        Mount a file system using GRUB
42 * grub-probe: (grub)Invoking grub-probe.        Probe device information
43 * grub-script-check: (grub)Invoking grub-script-check.
44 @end direntry
45
46 @setchapternewpage odd
47
48 @titlepage
49 @sp 10
50 @title the GNU GRUB manual
51 @subtitle The GRand Unified Bootloader, version @value{VERSION}, @value{UPDATED}.
52 @author Gordon Matzigkeit
53 @author Yoshinori K. Okuji
54 @author Colin Watson
55 @author Colin D. Bennett
56 @c The following two commands start the copyright page.
57 @page
58 @vskip 0pt plus 1filll
59 @insertcopying
60 @end titlepage
61
62 @c Output the table of contents at the beginning.
63 @contents
64
65 @finalout
66 @headings double
67
68 @ifnottex
69 @node Top
70 @top GNU GRUB manual
71
72 This is the documentation of GNU GRUB, the GRand Unified Bootloader,
73 a flexible and powerful boot loader program for a wide range of
74 architectures.
75
76 This edition documents version @value{VERSION}.
77
78 @insertcopying
79 @end ifnottex
80
81 @menu
82 * Introduction::                Capturing the spirit of GRUB
83 * Naming convention::           Names of your drives in GRUB
84 * OS-specific notes about grub tools:: 
85                                 Some notes about OS-specific behaviour of GRUB
86                                 tools
87 * Installation::                Installing GRUB on your drive
88 * Booting::                     How to boot different operating systems
89 * Configuration::               Writing your own configuration file
90 * Theme file format::           Format of GRUB theme files
91 * Network::                     Downloading OS images from a network
92 * Serial terminal::             Using GRUB via a serial line
93 * Vendor power-on keys::        Changing GRUB behaviour on vendor power-on keys
94 * Images::                      GRUB image files
95 * Core image size limitation::  GRUB image files size limitations
96 * Filesystem::                  Filesystem syntax and semantics
97 * Interface::                   The menu and the command-line
98 * Environment::                 GRUB environment variables
99 * Commands::                    The list of available builtin commands
100 * Internationalisation::        Topics relating to language support
101 * Security::                    Authentication, authorisation, and signatures
102 * Platform limitations::        The list of platform-specific limitations
103 * Platform-specific operations:: Platform-specific operations
104 * Supported kernels::           The list of supported kernels
105 * Troubleshooting::             Error messages produced by GRUB
106 * Invoking grub-install::       How to use the GRUB installer
107 * Invoking grub-mkconfig::      Generate a GRUB configuration file
108 * Invoking grub-mkpasswd-pbkdf2::
109                                 Generate GRUB password hashes
110 * Invoking grub-mkrelpath::     Make system path relative to its root
111 * Invoking grub-mkrescue::      Make a GRUB rescue image
112 * Invoking grub-mount::         Mount a file system using GRUB
113 * Invoking grub-probe::         Probe device information for GRUB
114 * Invoking grub-script-check::  Check GRUB script file for syntax errors
115 * Obtaining and Building GRUB:: How to obtain and build GRUB
116 * Reporting bugs::              Where you should send a bug report
117 * Future::                      Some future plans on GRUB
118 * Copying This Manual::         Copying This Manual
119 * Index::
120 @end menu
121
122
123 @node Introduction
124 @chapter Introduction to GRUB
125
126 @menu
127 * Overview::                    What exactly GRUB is and how to use it
128 * History::                     From maggot to house fly
129 * Changes from GRUB Legacy::    Differences from previous versions
130 * Features::                    GRUB features
131 * Role of a boot loader::       The role of a boot loader
132 @end menu
133
134
135 @node Overview
136 @section Overview
137
138 Briefly, a @dfn{boot loader} is the first software program that runs when
139 a computer starts.  It is responsible for loading and transferring
140 control to an operating system @dfn{kernel} software (such as Linux or
141 GNU Mach).  The kernel, in turn, initializes the rest of the operating
142 system (e.g. a GNU system).
143
144 GNU GRUB is a very powerful boot loader, which can load a wide variety
145 of free operating systems, as well as proprietary operating systems with
146 chain-loading@footnote{@dfn{chain-load} is the mechanism for loading
147 unsupported operating systems by loading another boot loader. It is
148 typically used for loading DOS or Windows.}. GRUB is designed to
149 address the complexity of booting a personal computer; both the
150 program and this manual are tightly bound to that computer platform,
151 although porting to other platforms may be addressed in the future.
152
153 One of the important features in GRUB is flexibility; GRUB understands
154 filesystems and kernel executable formats, so you can load an arbitrary
155 operating system the way you like, without recording the physical
156 position of your kernel on the disk. Thus you can load the kernel
157 just by specifying its file name and the drive and partition where the
158 kernel resides.
159
160 When booting with GRUB, you can use either a command-line interface
161 (@pxref{Command-line interface}), or a menu interface (@pxref{Menu
162 interface}). Using the command-line interface, you type the drive
163 specification and file name of the kernel manually. In the menu
164 interface, you just select an OS using the arrow keys. The menu is
165 based on a configuration file which you prepare beforehand
166 (@pxref{Configuration}). While in the menu, you can switch to the
167 command-line mode, and vice-versa. You can even edit menu entries
168 before using them.
169
170 In the following chapters, you will learn how to specify a drive, a
171 partition, and a file name (@pxref{Naming convention}) to GRUB, how to
172 install GRUB on your drive (@pxref{Installation}), and how to boot your
173 OSes (@pxref{Booting}), step by step.
174
175
176 @node History
177 @section History of GRUB
178
179 GRUB originated in 1995 when Erich Boleyn was trying to boot the GNU
180 Hurd with the University of Utah's Mach 4 microkernel (now known as GNU
181 Mach).  Erich and Brian Ford designed the Multiboot Specification
182 (@pxref{Top, Multiboot Specification, Motivation, multiboot, The Multiboot
183 Specification}), because they were determined not to add to the large
184 number of mutually-incompatible PC boot methods.
185
186 Erich then began modifying the FreeBSD boot loader so that it would
187 understand Multiboot. He soon realized that it would be a lot easier
188 to write his own boot loader from scratch than to keep working on the
189 FreeBSD boot loader, and so GRUB was born.
190
191 Erich added many features to GRUB, but other priorities prevented him
192 from keeping up with the demands of its quickly-expanding user base. In
193 1999, Gordon Matzigkeit and Yoshinori K. Okuji adopted GRUB as an
194 official GNU package, and opened its development by making the latest
195 sources available via anonymous CVS. @xref{Obtaining and Building
196 GRUB}, for more information.
197
198 Over the next few years, GRUB was extended to meet many needs, but it
199 quickly became clear that its design was not keeping up with the extensions
200 being made to it, and we reached the point where it was very difficult to
201 make any further changes without breaking existing features.  Around 2002,
202 Yoshinori K. Okuji started work on PUPA (Preliminary Universal Programming
203 Architecture for GNU GRUB), aiming to rewrite the core of GRUB to make it
204 cleaner, safer, more robust, and more powerful.  PUPA was eventually renamed
205 to GRUB 2, and the original version of GRUB was renamed to GRUB Legacy.
206 Small amounts of maintenance continued to be done on GRUB Legacy, but the
207 last release (0.97) was made in 2005 and at the time of writing it seems
208 unlikely that there will be another.
209
210 By around 2007, GNU/Linux distributions started to use GRUB 2 to limited
211 extents, and by the end of 2009 multiple major distributions were installing
212 it by default.
213
214
215 @node Changes from GRUB Legacy
216 @section Differences from previous versions
217
218 GRUB 2 is a rewrite of GRUB (@pxref{History}), although it shares many
219 characteristics with the previous version, now known as GRUB Legacy.  Users
220 of GRUB Legacy may need some guidance to find their way around this new
221 version.
222
223 @itemize @bullet
224 @item
225 The configuration file has a new name (@file{grub.cfg} rather than
226 @file{menu.lst} or @file{grub.conf}), new syntax (@pxref{Configuration}) and
227 many new commands (@pxref{Commands}).  Configuration cannot be copied over
228 directly, although most GRUB Legacy users should not find the syntax too
229 surprising.
230
231 @item
232 @file{grub.cfg} is typically automatically generated by
233 @command{grub-mkconfig} (@pxref{Simple configuration}).  This makes it
234 easier to handle versioned kernel upgrades.
235
236 @item
237 Partition numbers in GRUB device names now start at 1, not 0 (@pxref{Naming
238 convention}).
239
240 @item
241 The configuration file is now written in something closer to a full
242 scripting language: variables, conditionals, and loops are available.
243
244 @item
245 A small amount of persistent storage is available across reboots, using the
246 @command{save_env} and @command{load_env} commands in GRUB and the
247 @command{grub-editenv} utility.  This is not available in all configurations
248 (@pxref{Environment block}).
249
250 @item
251 GRUB 2 has more reliable ways to find its own files and those of target
252 kernels on multiple-disk systems, and has commands (@pxref{search}) to find
253 devices using file system labels or Universally Unique Identifiers (UUIDs).
254
255 @item
256 GRUB 2 is available for several other types of system in addition to the PC
257 BIOS systems supported by GRUB Legacy: PC EFI, PC coreboot, PowerPC, SPARC,
258 and MIPS Lemote Yeeloong are all supported.
259
260 @item
261 Many more file systems are supported, including but not limited to ext4,
262 HFS+, and NTFS.
263
264 @item
265 GRUB 2 can read files directly from LVM and RAID devices.
266
267 @item
268 A graphical terminal and a graphical menu system are available.
269
270 @item
271 GRUB 2's interface can be translated, including menu entry names.
272
273 @item
274 The image files (@pxref{Images}) that make up GRUB have been reorganised;
275 Stage 1, Stage 1.5, and Stage 2 are no more.
276
277 @item
278 GRUB 2 puts many facilities in dynamically loaded modules, allowing the core
279 image to be smaller, and allowing the core image to be built in more
280 flexible ways.
281 @end itemize
282
283
284 @node Features
285 @section GRUB features
286
287 The primary requirement for GRUB is that it be compliant with the
288 @dfn{Multiboot Specification}, which is described in @ref{Top, Multiboot
289 Specification, Motivation, multiboot, The Multiboot Specification}.
290
291 The other goals, listed in approximate order of importance, are:
292
293 @itemize @bullet{}
294 @item
295 Basic functions must be straightforward for end-users.
296
297 @item
298 Rich functionality to support kernel experts and designers.
299
300 @item
301 Backward compatibility for booting FreeBSD, NetBSD, OpenBSD, and
302 Linux. Proprietary kernels (such as DOS, Windows NT, and OS/2) are
303 supported via a chain-loading function.
304 @end itemize
305
306 Except for specific compatibility modes (chain-loading and the Linux
307 @dfn{piggyback} format), all kernels will be started in much the same
308 state as in the Multiboot Specification. Only kernels loaded at 1 megabyte
309 or above are presently supported. Any attempt to load below that
310 boundary will simply result in immediate failure and an error message
311 reporting the problem.
312
313 In addition to the requirements above, GRUB has the following features
314 (note that the Multiboot Specification doesn't require all the features
315 that GRUB supports):
316
317 @table @asis
318 @item Recognize multiple executable formats
319 Support many of the @dfn{a.out} variants plus @dfn{ELF}. Symbol
320 tables are also loaded.
321
322 @item Support non-Multiboot kernels
323 Support many of the various free 32-bit kernels that lack Multiboot
324 compliance (primarily FreeBSD, NetBSD@footnote{The NetBSD/i386 kernel
325 is Multiboot-compliant, but lacks support for Multiboot modules.},
326 OpenBSD, and Linux). Chain-loading of other boot loaders is also
327 supported.
328
329 @item Load multiples modules
330 Fully support the Multiboot feature of loading multiple modules.
331
332 @item Load a configuration file
333 Support a human-readable text configuration file with preset boot
334 commands. You can also load another configuration file dynamically and
335 embed a preset configuration file in a GRUB image file. The list of
336 commands (@pxref{Commands}) are a superset of those supported on the
337 command-line. An example configuration file is provided in
338 @ref{Configuration}.
339
340 @item Provide a menu interface
341 A menu interface listing preset boot commands, with a programmable
342 timeout, is available. There is no fixed limit on the number of boot
343 entries, and the current implementation has space for several hundred.
344
345 @item Have a flexible command-line interface
346 A fairly flexible command-line interface, accessible from the menu,
347 is available to edit any preset commands, or write a new boot command
348 set from scratch. If no configuration file is present, GRUB drops to
349 the command-line.
350
351 The list of commands (@pxref{Commands}) are a subset of those supported
352 for configuration files. Editing commands closely resembles the Bash
353 command-line (@pxref{Command Line Editing, Bash, Command Line Editing,
354 features, Bash Features}), with @key{TAB}-completion of commands,
355 devices, partitions, and files in a directory depending on context.
356
357 @item Support multiple filesystem types
358 Support multiple filesystem types transparently, plus a useful explicit
359 blocklist notation. The currently supported filesystem types are @dfn{Amiga
360 Fast FileSystem (AFFS)}, @dfn{AtheOS fs}, @dfn{BeFS},
361 @dfn{BtrFS} (including raid0, raid1, raid10, gzip and lzo),
362 @dfn{cpio} (little- and big-endian bin, odc and newc variants),
363 @dfn{Linux ext2/ext3/ext4}, @dfn{DOS FAT12/FAT16/FAT32}, @dfn{exFAT}, @dfn{HFS},
364 @dfn{HFS+}, @dfn{ISO9660} (including Joliet, Rock-ridge and multi-chunk files),
365 @dfn{JFS}, @dfn{Minix fs} (versions 1, 2 and 3), @dfn{nilfs2},
366 @dfn{NTFS} (including compression), @dfn{ReiserFS}, @dfn{ROMFS},
367 @dfn{Amiga Smart FileSystem (SFS)}, @dfn{Squash4}, @dfn{tar}, @dfn{UDF},
368 @dfn{BSD UFS/UFS2}, @dfn{XFS}, and @dfn{ZFS} (including lzjb, gzip,
369 zle, mirror, stripe, raidz1/2/3 and encryption in AES-CCM and AES-GCM).
370 @xref{Filesystem}, for more information.
371
372 @item Support automatic decompression
373 Can decompress files which were compressed by @command{gzip} or
374 @command{xz}@footnote{Only CRC32 data integrity check is supported (xz default
375 is CRC64 so one should use --check=crc32 option). LZMA BCJ filters are
376 supported.}. This function is both automatic and transparent to the user
377 (i.e. all functions operate upon the uncompressed contents of the specified
378 files). This greatly reduces a file size and loading time, a
379 particularly great benefit for floppies.@footnote{There are a few
380 pathological cases where loading a very badly organized ELF kernel might
381 take longer, but in practice this never happen.}
382
383 It is conceivable that some kernel modules should be loaded in a
384 compressed state, so a different module-loading command can be specified
385 to avoid uncompressing the modules.
386
387 @item Access data on any installed device
388 Support reading data from any or all floppies or hard disk(s) recognized
389 by the BIOS, independent of the setting of the root device.
390
391 @item Be independent of drive geometry translations
392 Unlike many other boot loaders, GRUB makes the particular drive
393 translation irrelevant. A drive installed and running with one
394 translation may be converted to another translation without any adverse
395 effects or changes in GRUB's configuration.
396
397 @item Detect all installed @sc{ram}
398 GRUB can generally find all the installed @sc{ram} on a PC-compatible
399 machine. It uses an advanced BIOS query technique for finding all
400 memory regions. As described on the Multiboot Specification (@pxref{Top,
401 Multiboot Specification, Motivation, multiboot, The Multiboot
402 Specification}), not all kernels make use of this information, but GRUB
403 provides it for those who do.
404
405 @item Support Logical Block Address mode
406 In traditional disk calls (called @dfn{CHS mode}), there is a geometry
407 translation problem, that is, the BIOS cannot access over 1024
408 cylinders, so the accessible space is limited to at least 508 MB and to
409 at most 8GB. GRUB can't universally solve this problem, as there is no
410 standard interface used in all machines. However, several newer machines
411 have the new interface, Logical Block Address (@dfn{LBA}) mode. GRUB
412 automatically detects if LBA mode is available and uses it if
413 available. In LBA mode, GRUB can access the entire disk.
414
415 @item Support network booting
416 GRUB is basically a disk-based boot loader but also has network
417 support. You can load OS images from a network by using the @dfn{TFTP}
418 protocol.
419
420 @item Support remote terminals
421 To support computers with no console, GRUB provides remote terminal
422 support, so that you can control GRUB from a remote host. Only serial
423 terminal support is implemented at the moment.
424 @end table
425
426
427 @node Role of a boot loader
428 @section The role of a boot loader
429
430 The following is a quotation from Gordon Matzigkeit, a GRUB fanatic:
431
432 @quotation
433 Some people like to acknowledge both the operating system and kernel when
434 they talk about their computers, so they might say they use
435 ``GNU/Linux'' or ``GNU/Hurd''.  Other people seem to think that the
436 kernel is the most important part of the system, so they like to call
437 their GNU operating systems ``Linux systems.''
438
439 I, personally, believe that this is a grave injustice, because the
440 @emph{boot loader} is the most important software of all. I used to
441 refer to the above systems as either ``LILO''@footnote{The LInux LOader,
442 a boot loader that everybody uses, but nobody likes.} or ``GRUB''
443 systems.
444
445 Unfortunately, nobody ever understood what I was talking about; now I
446 just use the word ``GNU'' as a pseudonym for GRUB.
447
448 So, if you ever hear people talking about their alleged ``GNU'' systems,
449 remember that they are actually paying homage to the best boot loader
450 around@dots{} GRUB!
451 @end quotation
452
453 We, the GRUB maintainers, do not (usually) encourage Gordon's level of
454 fanaticism, but it helps to remember that boot loaders deserve
455 recognition.  We hope that you enjoy using GNU GRUB as much as we did
456 writing it.
457
458
459 @node Naming convention
460 @chapter Naming convention
461
462 The device syntax used in GRUB is a wee bit different from what you may
463 have seen before in your operating system(s), and you need to know it so
464 that you can specify a drive/partition.
465
466 Look at the following examples and explanations:
467
468 @example
469 (fd0)
470 @end example
471
472 First of all, GRUB requires that the device name be enclosed with
473 @samp{(} and @samp{)}. The @samp{fd} part means that it is a floppy
474 disk. The number @samp{0} is the drive number, which is counted from
475 @emph{zero}. This expression means that GRUB will use the whole floppy
476 disk.
477
478 @example
479 (hd0,msdos2)
480 @end example
481
482 Here, @samp{hd} means it is a hard disk drive. The first integer
483 @samp{0} indicates the drive number, that is, the first hard disk,
484 the string @samp{msdos} indicates the partition scheme, while
485 the second integer, @samp{2}, indicates the partition number (or the
486 @sc{pc} slice number in the BSD terminology). The partition numbers are
487 counted from @emph{one}, not from zero (as was the case in previous
488 versions of GRUB). This expression means the second partition of the
489 first hard disk drive. In this case, GRUB uses one partition of the
490 disk, instead of the whole disk.
491
492 @example
493 (hd0,msdos5)
494 @end example
495
496 This specifies the first @dfn{extended partition} of the first hard disk
497 drive. Note that the partition numbers for extended partitions are
498 counted from @samp{5}, regardless of the actual number of primary
499 partitions on your hard disk.
500
501 @example
502 (hd1,msdos1,bsd1)
503 @end example
504
505 This means the BSD @samp{a} partition on first @sc{pc} slice number
506 of the second hard disk.
507
508 Of course, to actually access the disks or partitions with GRUB, you
509 need to use the device specification in a command, like @samp{set
510 root=(fd0)} or @samp{parttool (hd0,msdos3) hidden-}. To help you find out
511 which number specifies a partition you want, the GRUB command-line
512 (@pxref{Command-line interface}) options have argument
513 completion. This means that, for example, you only need to type
514
515 @example
516 set root=(
517 @end example
518
519 followed by a @key{TAB}, and GRUB will display the list of drives,
520 partitions, or file names. So it should be quite easy to determine the
521 name of your target partition, even with minimal knowledge of the
522 syntax.
523
524 Note that GRUB does @emph{not} distinguish IDE from SCSI - it simply
525 counts the drive numbers from zero, regardless of their type. Normally,
526 any IDE drive number is less than any SCSI drive number, although that
527 is not true if you change the boot sequence by swapping IDE and SCSI
528 drives in your BIOS.
529
530 Now the question is, how to specify a file? Again, consider an
531 example:
532
533 @example
534 (hd0,msdos1)/vmlinuz
535 @end example
536
537 This specifies the file named @samp{vmlinuz}, found on the first
538 partition of the first hard disk drive. Note that the argument
539 completion works with file names, too.
540
541 That was easy, admit it. Now read the next chapter, to find out how to
542 actually install GRUB on your drive.
543
544 @node OS-specific notes about grub tools
545 @chapter OS-specific notes about grub tools
546
547 On OS which have device nodes similar to Unix-like OS GRUB tools use the
548 OS name. E.g. for GNU/Linux:
549
550 @example
551 # @kbd{grub-install /dev/sda}
552 @end example
553
554 On AROS we use another syntax. For volumes:
555
556 @example
557 //:<volume name>
558 @end example
559
560 E.g.
561
562 @example
563 //:DH0
564 @end example
565
566 For disks we use syntax:
567 @example
568 //:<driver name>/unit/flags
569 @end example
570
571 E.g.
572
573 @example
574 # @kbd{grub-install //:ata.device/0/0}
575 @end example
576
577 On Windows we use UNC path. For volumes it's typically
578
579 @example
580 \\?\Volume@{<GUID>@}
581 \\?\<drive letter>:
582 @end example
583
584 E.g.
585
586 @example
587 \\?\Volume@{17f34d50-cf64-4b02-800e-51d79c3aa2ff@}
588 \\?\C:
589 @end example
590
591
592 For disks it's
593
594 @example
595 \\?\PhysicalDrive<number>
596 @end example
597
598 E.g.
599
600 @example
601 # @kbd{grub-install \\?\PhysicalDrive0}
602 @end example
603
604 Beware that you may need to further escape the backslashes depending on your
605 shell.
606
607 When compiled with cygwin support then cygwin drive names are automatically
608 when needed. E.g.
609
610 @example
611 # @kbd{grub-install /dev/sda}
612 @end example
613
614 @node Installation
615 @chapter Installation
616
617 In order to install GRUB as your boot loader, you need to first
618 install the GRUB system and utilities under your UNIX-like operating
619 system (@pxref{Obtaining and Building GRUB}). You can do this either
620 from the source tarball, or as a package for your OS.
621
622 After you have done that, you need to install the boot loader on a
623 drive (floppy or hard disk) by using the utility
624 @command{grub-install} (@pxref{Invoking grub-install}) on a UNIX-like OS.
625
626 GRUB comes with boot images, which are normally put in the directory
627 @file{/usr/lib/grub/<cpu>-<platform>} (for BIOS-based machines
628 @file{/usr/lib/grub/i386-pc}). Hereafter, the directory where GRUB images are
629 initially placed (normally @file{/usr/lib/grub/<cpu>-<platform>}) will be
630 called the @dfn{image directory}, and the directory where the boot
631 loader needs to find them (usually @file{/boot}) will be called
632 the @dfn{boot directory}.
633
634 @menu
635 * Installing GRUB using grub-install::
636 * Making a GRUB bootable CD-ROM::
637 * Device map::
638 * BIOS installation::
639 @end menu
640
641
642 @node Installing GRUB using grub-install
643 @section Installing GRUB using grub-install
644
645 For information on where GRUB should be installed on PC BIOS platforms,
646 @pxref{BIOS installation}.
647
648 In order to install GRUB under a UNIX-like OS (such
649 as @sc{gnu}), invoke the program @command{grub-install} (@pxref{Invoking
650 grub-install}) as the superuser (@dfn{root}).
651
652 The usage is basically very simple. You only need to specify one
653 argument to the program, namely, where to install the boot loader. The
654 argument has to be either a device file (like @samp{/dev/hda}).
655 For example, under Linux the following will install GRUB into the MBR
656 of the first IDE disk:
657
658 @example
659 # @kbd{grub-install /dev/sda}
660 @end example
661
662 Likewise, under GNU/Hurd, this has the same effect:
663
664 @example
665 # @kbd{grub-install /dev/hd0}
666 @end example
667
668 But all the above examples assume that GRUB should put images under
669 the @file{/boot} directory. If you want GRUB to put images under a directory
670 other than @file{/boot}, you need to specify the option
671 @option{--boot-directory}. The typical usage is that you create a GRUB
672 boot floppy with a filesystem. Here is an example:
673
674 @example
675 @group
676 # @kbd{mke2fs /dev/fd0}
677 # @kbd{mount -t ext2 /dev/fd0 /mnt}
678 # @kbd{mkdir /mnt/boot}
679 # @kbd{grub-install --boot-directory=/mnt/boot /dev/fd0}
680 # @kbd{umount /mnt}
681 @end group
682 @end example
683
684 Some BIOSes have a bug of exposing the first partition of a USB drive as a
685 floppy instead of exposing the USB drive as a hard disk (they call it
686 ``USB-FDD'' boot). In such cases, you need to install like this:
687
688 @example
689 # @kbd{losetup /dev/loop0 /dev/sdb1}
690 # @kbd{mount /dev/loop0 /mnt/usb}
691 # @kbd{grub-install --boot-directory=/mnt/usb/bugbios --force --allow-floppy /dev/loop0}
692 @end example
693
694 This install doesn't conflict with standard install as long as they are in
695 separate directories.
696
697 Note that @command{grub-install} is actually just a shell script and the
698 real task is done by other tools such as @command{grub-mkimage}. Therefore,
699 you may run those commands directly to install GRUB, without using
700 @command{grub-install}. Don't do that, however, unless you are very familiar
701 with the internals of GRUB. Installing a boot loader on a running OS may be
702 extremely dangerous.
703
704 On EFI systems for fixed disk install you have to mount EFI System Partition.
705 If you mount it at @file{/boot/efi} then you don't need any special arguments:
706
707 @example
708 # @kbd{grub-install}
709 @end example
710
711 Otherwise you need to specify where your EFI System partition is mounted:
712
713 @example
714 # @kbd{grub-install --efi-directory=/mnt/efi}
715 @end example
716
717 For removable installs you have to use @option{--removable} and specify both
718 @option{--boot-directory} and @option{--efi-directory}:
719
720 @example
721 # @kbd{grub-install --efi-directory=/mnt/usb --boot-directory=/mnt/usb/boot --removable}
722 @end example
723
724 @node Making a GRUB bootable CD-ROM
725 @section Making a GRUB bootable CD-ROM
726
727 GRUB supports the @dfn{no emulation mode} in the El Torito
728 specification@footnote{El Torito is a specification for bootable CD
729 using BIOS functions.}. This means that you can use the whole CD-ROM
730 from GRUB and you don't have to make a floppy or hard disk image file,
731 which can cause compatibility problems.
732
733 For booting from a CD-ROM, GRUB uses a special image called
734 @file{cdboot.img}, which is concatenated with @file{core.img}. The
735 @file{core.img} used for this should be built with at least the
736 @samp{iso9660} and @samp{biosdisk} modules. Your bootable CD-ROM will
737 usually also need to include a configuration file @file{grub.cfg} and some
738 other GRUB modules.
739
740 To make a simple generic GRUB rescue CD, you can use the
741 @command{grub-mkrescue} program (@pxref{Invoking grub-mkrescue}):
742
743 @example
744 $ @kbd{grub-mkrescue -o grub.iso}
745 @end example
746
747 You will often need to include other files in your image. To do this, first
748 make a top directory for the bootable image, say, @samp{iso}:
749
750 @example
751 $ @kbd{mkdir iso}
752 @end example
753
754 Make a directory for GRUB:
755
756 @example
757 $ @kbd{mkdir -p iso/boot/grub}
758 @end example
759
760 If desired, make the config file @file{grub.cfg} under @file{iso/boot/grub}
761 (@pxref{Configuration}), and copy any files and directories for the disc to the
762 directory @file{iso/}.
763
764 Finally, make the image:
765
766 @example
767 $ @kbd{grub-mkrescue -o grub.iso iso}
768 @end example
769
770 This produces a file named @file{grub.iso}, which then can be burned
771 into a CD (or a DVD), or written to a USB mass storage device.
772
773 The root device will be set up appropriately on entering your
774 @file{grub.cfg} configuration file, so you can refer to file names on the CD
775 without needing to use an explicit device name. This makes it easier to
776 produce rescue images that will work on both optical drives and USB mass
777 storage devices.
778
779
780 @node Device map
781 @section The map between BIOS drives and OS devices
782
783 If the device map file exists, the GRUB utilities (@command{grub-probe},
784 etc.) read it to map BIOS drives to OS devices.  This file consists of lines
785 like this:
786
787 @example
788 (@var{device}) @var{file}
789 @end example
790
791 @var{device} is a drive specified in the GRUB syntax (@pxref{Device
792 syntax}), and @var{file} is an OS file, which is normally a device file.
793
794 Historically, the device map file was used because GRUB device names had to
795 be used in the configuration file, and they were derived from BIOS drive
796 numbers.  The map between BIOS drives and OS devices cannot always be
797 guessed correctly: for example, GRUB will get the order wrong if you
798 exchange the boot sequence between IDE and SCSI in your BIOS.
799
800 Unfortunately, even OS device names are not always stable.  Modern versions
801 of the Linux kernel may probe drives in a different order from boot to boot,
802 and the prefix (@file{/dev/hd*} versus @file{/dev/sd*}) may change depending
803 on the driver subsystem in use.  As a result, the device map file required
804 frequent editing on some systems.
805
806 GRUB avoids this problem nowadays by using UUIDs or file system labels when
807 generating @file{grub.cfg}, and we advise that you do the same for any
808 custom menu entries you write.  If the device map file does not exist, then
809 the GRUB utilities will assume a temporary device map on the fly.  This is
810 often good enough, particularly in the common case of single-disk systems.
811
812 However, the device map file is not entirely obsolete yet, and it is
813 used for overriding when current environment is different from the one on boot.
814 Most common case is if you use a partition or logical volume as a disk for
815 virtual machine.  You can put any comments in the file if needed,
816 as the GRUB utilities assume that a line is just a comment if
817 the first character is @samp{#}.
818
819
820 @node BIOS installation
821 @section BIOS installation
822
823 @heading MBR
824
825 The partition table format traditionally used on PC BIOS platforms is called
826 the Master Boot Record (MBR) format; this is the format that allows up to
827 four primary partitions and additional logical partitions.  With this
828 partition table format, there are two ways to install GRUB: it can be
829 embedded in the area between the MBR and the first partition (called by
830 various names, such as the "boot track", "MBR gap", or "embedding area", and
831 which is usually at least 31 KiB), or the core image can be installed in a
832 file system and a list of the blocks that make it up can be stored in the
833 first sector of that partition.
834
835 Each of these has different problems.  There is no way to reserve space in
836 the embedding area with complete safety, and some proprietary software is
837 known to use it to make it difficult for users to work around licensing
838 restrictions; and systems are sometimes partitioned without leaving enough
839 space before the first partition.  On the other hand, installing to a
840 filesystem means that GRUB is vulnerable to its blocks being moved around by
841 filesystem features such as tail packing, or even by aggressive fsck
842 implementations, so this approach is quite fragile; and this approach can
843 only be used if the @file{/boot} filesystem is on the same disk that the
844 BIOS boots from, so that GRUB does not have to rely on guessing BIOS drive
845 numbers.
846
847 The GRUB development team generally recommends embedding GRUB before the
848 first partition, unless you have special requirements.  You must ensure that
849 the first partition starts at least 31 KiB (63 sectors) from the start of
850 the disk; on modern disks, it is often a performance advantage to align
851 partitions on larger boundaries anyway, so the first partition might start 1
852 MiB from the start of the disk.
853
854 @heading GPT
855
856 Some newer systems use the GUID Partition Table (GPT) format.  This was
857 specified as part of the Extensible Firmware Interface (EFI), but it can
858 also be used on BIOS platforms if system software supports it; for example,
859 GRUB and GNU/Linux can be used in this configuration.  With this format, it
860 is possible to reserve a whole partition for GRUB, called the BIOS Boot
861 Partition.  GRUB can then be embedded into that partition without the risk
862 of being overwritten by other software and without being contained in a
863 filesystem which might move its blocks around.
864
865 When creating a BIOS Boot Partition on a GPT system, you should make sure
866 that it is at least 31 KiB in size.  (GPT-formatted disks are not usually
867 particularly small, so we recommend that you make it larger than the bare
868 minimum, such as 1 MiB, to allow plenty of room for growth.)  You must also
869 make sure that it has the proper partition type.  Using GNU Parted, you can
870 set this using a command such as the following:
871
872 @example
873 # @kbd{parted /dev/@var{disk} set @var{partition-number} bios_grub on}
874 @end example
875
876 If you are using gdisk, set the partition type to @samp{0xEF02}.  With
877 partitioning programs that require setting the GUID directly, it should be
878 @samp{21686148-6449-6e6f-744e656564454649}.
879
880 @strong{Caution:} Be very careful which partition you select!  When GRUB
881 finds a BIOS Boot Partition during installation, it will automatically
882 overwrite part of it.  Make sure that the partition does not contain any
883 other data.
884
885
886 @node Booting
887 @chapter Booting
888
889 GRUB can load Multiboot-compliant kernels in a consistent way,
890 but for some free operating systems you need to use some OS-specific
891 magic.
892
893 @menu
894 * General boot methods::        How to boot OSes with GRUB generally
895 * Loopback booting::            Notes on booting from loopbacks
896 * OS-specific notes::           Notes on some operating systems
897 @end menu
898
899
900 @node General boot methods
901 @section How to boot operating systems
902
903 GRUB has two distinct boot methods. One of the two is to load an
904 operating system directly, and the other is to chain-load another boot
905 loader which then will load an operating system actually. Generally
906 speaking, the former is more desirable, because you don't need to
907 install or maintain other boot loaders and GRUB is flexible enough to
908 load an operating system from an arbitrary disk/partition. However,
909 the latter is sometimes required, since GRUB doesn't support all the
910 existing operating systems natively.
911
912 @menu
913 * Loading an operating system directly::
914 * Chain-loading::
915 @end menu
916
917
918 @node Loading an operating system directly
919 @subsection How to boot an OS directly with GRUB
920
921 Multiboot (@pxref{Top, Multiboot Specification, Motivation, multiboot,
922 The Multiboot Specification}) is the native format supported by GRUB.
923 For the sake of convenience, there is also support for Linux, FreeBSD,
924 NetBSD and OpenBSD. If you want to boot other operating systems, you
925 will have to chain-load them (@pxref{Chain-loading}).
926
927 FIXME: this section is incomplete.
928
929 @enumerate
930 @item
931 Run the command @command{boot} (@pxref{boot}).
932 @end enumerate
933
934 However, DOS and Windows have some deficiencies, so you might have to
935 use more complicated instructions. @xref{DOS/Windows}, for more
936 information.
937
938
939 @node Chain-loading
940 @subsection Chain-loading an OS
941
942 Operating systems that do not support Multiboot and do not have specific
943 support in GRUB (specific support is available for Linux, FreeBSD, NetBSD
944 and OpenBSD) must be chain-loaded, which involves loading another boot
945 loader and jumping to it in real mode.
946
947 The @command{chainloader} command (@pxref{chainloader}) is used to set this
948 up.  It is normally also necessary to load some GRUB modules and set the
949 appropriate root device.  Putting this together, we get something like this,
950 for a Windows system on the first partition of the first hard disk:
951
952 @verbatim
953 menuentry "Windows" {
954         insmod chain
955         insmod ntfs
956         set root=(hd0,1)
957         chainloader +1
958 }
959 @end verbatim
960 @c FIXME: document UUIDs.
961
962 On systems with multiple hard disks, an additional workaround may be
963 required.  @xref{DOS/Windows}.
964
965 Chain-loading is only supported on PC BIOS and EFI platforms.
966
967 @node Loopback booting
968 @section Loopback booting
969 GRUB is able to read from an image (be it one of CD or HDD) stored on
970 any of its accessible storages (refer to @pxref{loopback} command).
971 However the OS itself should be able to find its root. This usually
972 involves running a userspace program running before the real root
973 is discovered. This is achieved by GRUB loading a specially made
974 small image and passing it as ramdisk to the kernel. This is achieved
975 by commands @command{kfreebsd_module}, @command{knetbsd_module_elf},
976 @command{kopenbsd_ramdisk}, @command{initrd} (@pxref{initrd}),
977 @command{initrd16} (@pxref{initrd}), @command{multiboot_module},
978 @command{multiboot2_module} or @command{xnu_ramdisk}
979 depending on the loader. Note that for knetbsd the image must be put
980 inside miniroot.kmod and the whole miniroot.kmod has to be loaded. In
981 kopenbsd payload this is disabled by default. Aditionally behaviour of
982 initial ramdisk depends on command line options. Several distributors provide
983 the image for this purpose or it's integrated in their standard ramdisk and
984 activated by special option. Consult your kernel and distribution manual for
985 more details. Other loaders like appleloader, chainloader (BIOS, EFI, coreboot),
986 freedos, ntldr and plan9 provide no possibility of loading initial ramdisk and
987 as far as author is aware the payloads in question don't support either initial
988 ramdisk or discovering loopback boot in other way and as such not bootable this
989 way. Please consider alternative boot methods like copying all files
990 from the image to actual partition. Consult your OS documentation for
991 more details
992
993 @node OS-specific notes
994 @section Some caveats on OS-specific issues
995
996 Here, we describe some caveats on several operating systems.
997
998 @menu
999 * GNU/Hurd::
1000 * GNU/Linux::
1001 * NetBSD::
1002 * DOS/Windows::
1003 @end menu
1004
1005
1006 @node GNU/Hurd
1007 @subsection GNU/Hurd
1008
1009 Since GNU/Hurd is Multiboot-compliant, it is easy to boot it; there is
1010 nothing special about it. But do not forget that you have to specify a
1011 root partition to the kernel.
1012
1013 @enumerate
1014 @item
1015 Set GRUB's root device to the same drive as GNU/Hurd's.  The command
1016 @code{search --set=root --file /boot/gnumach.gz} or similar may help you
1017 (@pxref{search}).
1018
1019 @item 
1020 Load the kernel and the modules, like this:
1021
1022 @example
1023 @group
1024 grub> @kbd{multiboot /boot/gnumach.gz root=device:hd0s1}
1025 grub> @kbd{module  /hurd/ext2fs.static ext2fs --readonly \
1026                    --multiboot-command-line='$@{kernel-command-line@}' \
1027                    --host-priv-port='$@{host-port@}' \
1028                    --device-master-port='$@{device-port@}' \
1029                    --exec-server-task='$@{exec-task@}' -T typed '$@{root@}' \
1030                    '$(task-create)' '$(task-resume)'}
1031 grub> @kbd{module /lib/ld.so.1 exec /hurd/exec '$(exec-task=task-create)'}
1032 @end group
1033 @end example
1034
1035 @item
1036 Finally, run the command @command{boot} (@pxref{boot}).
1037 @end enumerate
1038
1039
1040 @node GNU/Linux
1041 @subsection GNU/Linux
1042
1043 It is relatively easy to boot GNU/Linux from GRUB, because it somewhat
1044 resembles to boot a Multiboot-compliant OS.
1045
1046 @enumerate
1047 @item
1048 Set GRUB's root device to the same drive as GNU/Linux's.  The command
1049 @code{search --set=root --file /vmlinuz} or similar may help you
1050 (@pxref{search}).
1051
1052 @item
1053 Load the kernel using the command @command{linux} (@pxref{linux}):
1054
1055 @example
1056 grub> @kbd{linux /vmlinuz root=/dev/sda1}
1057 @end example
1058
1059 If you need to specify some kernel parameters, just append them to the
1060 command.  For example, to set @option{acpi} to @samp{off}, do this:
1061
1062 @example
1063 grub> @kbd{linux /vmlinuz root=/dev/sda1 acpi=off}
1064 @end example
1065
1066 See the documentation in the Linux source tree for complete information on
1067 the available options.
1068
1069 With @command{linux} GRUB uses 32-bit protocol. Some BIOS services like APM
1070 or EDD aren't available with this protocol. In this case you need to use
1071 @command{linux16}
1072
1073 @example
1074 grub> @kbd{linux16 /vmlinuz root=/dev/sda1 acpi=off}
1075 @end example 
1076
1077 @item
1078 If you use an initrd, execute the command @command{initrd} (@pxref{initrd})
1079 after @command{linux}:
1080
1081 @example
1082 grub> @kbd{initrd /initrd}
1083 @end example
1084
1085 If you used @command{linux16} you need to use @command{initrd16}:
1086
1087 @example
1088 grub> @kbd{initrd16 /initrd}
1089 @end example
1090
1091 @item
1092 Finally, run the command @command{boot} (@pxref{boot}).
1093 @end enumerate
1094
1095 @strong{Caution:} If you use an initrd and specify the @samp{mem=}
1096 option to the kernel to let it use less than actual memory size, you
1097 will also have to specify the same memory size to GRUB. To let GRUB know
1098 the size, run the command @command{uppermem} @emph{before} loading the
1099 kernel. @xref{uppermem}, for more information.
1100
1101
1102 @node NetBSD
1103 @subsection NetBSD
1104
1105 Booting a NetBSD kernel from GRUB is also relatively easy: first set
1106 GRUB's root device, then load the kernel and the modules, and finally
1107 run @command{boot}.
1108
1109 @enumerate
1110 @item
1111 Set GRUB's root device to the partition holding the NetBSD root file
1112 system.  For a disk with a NetBSD disk label, this is usually the first
1113 partition (a:).  In that case, and assuming that the partition is on the
1114 first hard disk, set GRUB's root device as follows:
1115
1116 @example
1117 grub> @kbd{insmod part_bsd}
1118 grub> @kbd{set root=(hd0,netbsd1)}
1119 @end example
1120
1121 For a disk with a GUID Partition Table (GPT), and assuming that the
1122 NetBSD root partition is the third GPT partition, do this:
1123
1124 @example
1125 grub> @kbd{insmod part_gpt}
1126 grub> @kbd{set root=(hd0,gpt3)}
1127 @end example
1128
1129 @item
1130 Load the kernel using the command @command{knetbsd}:
1131
1132 @example
1133 grub> @kbd{knetbsd /netbsd}
1134 @end example
1135
1136 Various options may be given to @command{knetbsd}.  These options are,
1137 for the most part, the same as in the NetBSD boot loader.  For instance,
1138 to boot the system in single-user mode and with verbose messages, do
1139 this:
1140
1141 @example
1142 grub> @kbd{knetbsd /netbsd -s -v}
1143 @end example
1144
1145 @item
1146 If needed, load kernel modules with the command
1147 @command{knetbsd_module_elf}.  A typical example is the module for the
1148 root file system:
1149
1150 @example
1151 grub> @kbd{knetbsd_module_elf /stand/amd64/6.0/modules/ffs/ffs.kmod}
1152 @end example
1153
1154 @item
1155 Finally, run the command @command{boot} (@pxref{boot}).
1156 @end enumerate
1157
1158
1159 @node DOS/Windows
1160 @subsection DOS/Windows
1161
1162 GRUB cannot boot DOS or Windows directly, so you must chain-load them
1163 (@pxref{Chain-loading}). However, their boot loaders have some critical
1164 deficiencies, so it may not work to just chain-load them. To overcome
1165 the problems, GRUB provides you with two helper functions.
1166
1167 If you have installed DOS (or Windows) on a non-first hard disk, you
1168 have to use the disk swapping technique, because that OS cannot boot
1169 from any disks but the first one. The workaround used in GRUB is the
1170 command @command{drivemap} (@pxref{drivemap}), like this:
1171
1172 @example
1173 drivemap -s (hd0) (hd1)
1174 @end example
1175
1176 This performs a @dfn{virtual} swap between your first and second hard
1177 drive.
1178
1179 @strong{Caution:} This is effective only if DOS (or Windows) uses BIOS
1180 to access the swapped disks. If that OS uses a special driver for the
1181 disks, this probably won't work.
1182
1183 Another problem arises if you installed more than one set of DOS/Windows
1184 onto one disk, because they could be confused if there are more than one
1185 primary partitions for DOS/Windows. Certainly you should avoid doing
1186 this, but there is a solution if you do want to do so. Use the partition
1187 hiding/unhiding technique.
1188
1189 If GRUB @dfn{hides} a DOS (or Windows) partition (@pxref{parttool}), DOS (or
1190 Windows) will ignore the partition. If GRUB @dfn{unhides} a DOS (or Windows)
1191 partition, DOS (or Windows) will detect the partition. Thus, if you have
1192 installed DOS (or Windows) on the first and the second partition of the
1193 first hard disk, and you want to boot the copy on the first partition, do
1194 the following:
1195
1196 @example
1197 @group
1198 parttool (hd0,1) hidden-
1199 parttool (hd0,2) hidden+
1200 set root=(hd0,1)
1201 chainloader +1
1202 parttool @verb{'${root}'} boot+
1203 boot
1204 @end group
1205 @end example
1206
1207
1208 @node Configuration
1209 @chapter Writing your own configuration file
1210
1211 GRUB is configured using @file{grub.cfg}, usually located under
1212 @file{/boot/grub}.  This file is quite flexible, but most users will not
1213 need to write the whole thing by hand.
1214
1215 @menu
1216 * Simple configuration::        Recommended for most users
1217 * Shell-like scripting::        For power users and developers
1218 * Multi-boot manual config::    For non-standard multi-OS scenarios
1219 * Embedded configuration::      Embedding a configuration file into GRUB
1220 @end menu
1221
1222
1223 @node Simple configuration
1224 @section Simple configuration handling
1225
1226 The program @command{grub-mkconfig} (@pxref{Invoking grub-mkconfig})
1227 generates @file{grub.cfg} files suitable for most cases.  It is suitable for
1228 use when upgrading a distribution, and will discover available kernels and
1229 attempt to generate menu entries for them.
1230
1231 @command{grub-mkconfig} does have some limitations.  While adding extra
1232 custom menu entries to the end of the list can be done by editing
1233 @file{/etc/grub.d/40_custom} or creating @file{/boot/grub/custom.cfg},
1234 changing the order of menu entries or changing their titles may require
1235 making complex changes to shell scripts stored in @file{/etc/grub.d/}.  This
1236 may be improved in the future.  In the meantime, those who feel that it
1237 would be easier to write @file{grub.cfg} directly are encouraged to do so
1238 (@pxref{Booting}, and @ref{Shell-like scripting}), and to disable any system
1239 provided by their distribution to automatically run @command{grub-mkconfig}.
1240
1241 The file @file{/etc/default/grub} controls the operation of
1242 @command{grub-mkconfig}.  It is sourced by a shell script, and so must be
1243 valid POSIX shell input; normally, it will just be a sequence of
1244 @samp{KEY=value} lines, but if the value contains spaces or other special
1245 characters then it must be quoted.  For example:
1246
1247 @example
1248 GRUB_TERMINAL_INPUT="console serial"
1249 @end example
1250
1251 Valid keys in @file{/etc/default/grub} are as follows:
1252
1253 @table @samp
1254 @item GRUB_DEFAULT
1255 The default menu entry.  This may be a number, in which case it identifies
1256 the Nth entry in the generated menu counted from zero, or the title of a
1257 menu entry, or the special string @samp{saved}.  Using the id may be
1258 useful if you want to set a menu entry as the default even though there may
1259 be a variable number of entries before it.
1260
1261 For example, if you have:
1262
1263 @verbatim
1264 menuentry 'Example GNU/Linux distribution' --class gnu-linux --id example-gnu-linux {
1265         ...
1266 }
1267 @end verbatim
1268
1269 then you can make this the default using:
1270
1271 @example
1272 GRUB_DEFAULT=example-gnu-linux
1273 @end example
1274
1275 Previously it was documented the way to use entry title. While this still
1276 works it's not recommended since titles often contain unstable device names
1277 and may be translated
1278
1279 If you set this to @samp{saved}, then the default menu entry will be that
1280 saved by @samp{GRUB_SAVEDEFAULT} or @command{grub-set-default}.  This relies on
1281 the environment block, which may not be available in all situations
1282 (@pxref{Environment block}).
1283
1284 The default is @samp{0}.
1285
1286 @item GRUB_SAVEDEFAULT
1287 If this option is set to @samp{true}, then, when an entry is selected, save
1288 it as a new default entry for use by future runs of GRUB.  This is only
1289 useful if @samp{GRUB_DEFAULT=saved}; it is a separate option because
1290 @samp{GRUB_DEFAULT=saved} is useful without this option, in conjunction with
1291 @command{grub-set-default}.  Unset by default.
1292 This option relies on the environment block, which may not be available in
1293 all situations (@pxref{Environment block}).
1294
1295 @item GRUB_TIMEOUT
1296 Boot the default entry this many seconds after the menu is displayed, unless
1297 a key is pressed.  The default is @samp{5}.  Set to @samp{0} to boot
1298 immediately without displaying the menu, or to @samp{-1} to wait
1299 indefinitely.
1300
1301 If @samp{GRUB_TIMEOUT_STYLE} is set to @samp{countdown} or @samp{hidden},
1302 the timeout is instead counted before the menu is displayed.
1303
1304 @item GRUB_TIMEOUT_STYLE
1305 If this option is unset or set to @samp{menu}, then GRUB will display the
1306 menu and then wait for the timeout set by @samp{GRUB_TIMEOUT} to expire
1307 before booting the default entry.  Pressing a key interrupts the timeout.
1308
1309 If this option is set to @samp{countdown} or @samp{hidden}, then, before
1310 displaying the menu, GRUB will wait for the timeout set by
1311 @samp{GRUB_TIMEOUT} to expire.  If @key{ESC} is pressed during that time, it
1312 will display the menu and wait for input.  If a hotkey associated with a
1313 menu entry is pressed, it will boot the associated menu entry immediately.
1314 If the timeout expires before either of these happens, it will boot the
1315 default entry.  In the @samp{countdown} case, it will show a one-line
1316 indication of the remaining time.
1317
1318 @item GRUB_DEFAULT_BUTTON
1319 @itemx GRUB_TIMEOUT_BUTTON
1320 @itemx GRUB_TIMEOUT_STYLE_BUTTON
1321 @itemx GRUB_BUTTON_CMOS_ADDRESS
1322 Variants of the corresponding variables without the @samp{_BUTTON} suffix,
1323 used to support vendor-specific power buttons.  @xref{Vendor power-on keys}.
1324
1325 @item GRUB_DISTRIBUTOR
1326 Set by distributors of GRUB to their identifying name.  This is used to
1327 generate more informative menu entry titles.
1328
1329 @item GRUB_TERMINAL_INPUT
1330 Select the terminal input device.  You may select multiple devices here,
1331 separated by spaces.
1332
1333 Valid terminal input names depend on the platform, but may include
1334 @samp{console} (native platform console), @samp{serial} (serial terminal),
1335 @samp{serial_<port>} (serial terminal with explicit port selection),
1336 @samp{at_keyboard} (PC AT keyboard), or @samp{usb_keyboard} (USB keyboard
1337 using the HID Boot Protocol, for cases where the firmware does not handle
1338 this).
1339
1340 The default is to use the platform's native terminal input.
1341
1342 @item GRUB_TERMINAL_OUTPUT
1343 Select the terminal output device.  You may select multiple devices here,
1344 separated by spaces.
1345
1346 Valid terminal output names depend on the platform, but may include
1347 @samp{console} (native platform console), @samp{serial} (serial terminal),
1348 @samp{serial_<port>} (serial terminal with explicit port selection),
1349 @samp{gfxterm} (graphics-mode output), @samp{vga_text} (VGA text output),
1350 @samp{mda_text} (MDA text output), @samp{morse} (Morse-coding using system
1351 beeper) or @samp{spkmodem} (simple data protocol using system speaker).
1352
1353 @samp{spkmodem} is useful when no serial port is available. Connect the output
1354 of sending system (where GRUB is running) to line-in of receiving system
1355 (usually developer machine).
1356 On receiving system compile @samp{spkmodem-recv} from
1357 @samp{util/spkmodem-recv.c} and run:
1358
1359 @example
1360 parecord --channels=1 --rate=48000 --format=s16le | ./spkmodem-recv
1361 @end example
1362
1363 The default is to use the platform's native terminal output.
1364
1365 @item GRUB_TERMINAL
1366 If this option is set, it overrides both @samp{GRUB_TERMINAL_INPUT} and
1367 @samp{GRUB_TERMINAL_OUTPUT} to the same value.
1368
1369 @item GRUB_SERIAL_COMMAND
1370 A command to configure the serial port when using the serial console.
1371 @xref{serial}.  Defaults to @samp{serial}.
1372
1373 @item GRUB_CMDLINE_LINUX
1374 Command-line arguments to add to menu entries for the Linux kernel.
1375
1376 @item GRUB_CMDLINE_LINUX_DEFAULT
1377 Unless @samp{GRUB_DISABLE_RECOVERY} is set to @samp{true}, two menu
1378 entries will be generated for each Linux kernel: one default entry and one
1379 entry for recovery mode.  This option lists command-line arguments to add
1380 only to the default menu entry, after those listed in
1381 @samp{GRUB_CMDLINE_LINUX}.
1382
1383 @item GRUB_CMDLINE_NETBSD
1384 @itemx GRUB_CMDLINE_NETBSD_DEFAULT
1385 As @samp{GRUB_CMDLINE_LINUX} and @samp{GRUB_CMDLINE_LINUX_DEFAULT}, but for
1386 NetBSD.
1387
1388 @item GRUB_CMDLINE_GNUMACH
1389 As @samp{GRUB_CMDLINE_LINUX}, but for GNU Mach.
1390
1391 @item GRUB_CMDLINE_XEN
1392 @itemx GRUB_CMDLINE_XEN_DEFAULT
1393 The values of these options are passed to Xen hypervisor Xen menu entries,
1394 for all respectively normal entries.
1395
1396 @item GRUB_CMDLINE_LINUX_XEN_REPLACE
1397 @item GRUB_CMDLINE_LINUX_XEN_REPLACE_DEFAULT
1398 The values of these options replace the values of @samp{GRUB_CMDLINE_LINUX}
1399 and @samp{GRUB_CMDLINE_LINUX_DEFAULT} for Linux and Xen menu entries.
1400
1401 @item GRUB_EARLY_INITRD_LINUX_CUSTOM
1402 @itemx GRUB_EARLY_INITRD_LINUX_STOCK
1403 List of space-separated early initrd images to be loaded from @samp{/boot}.
1404 This is for loading things like CPU microcode, firmware, ACPI tables, crypto
1405 keys, and so on. These early images will be loaded in the order declared,
1406 and all will be loaded before the actual functional initrd image.
1407
1408 @samp{GRUB_EARLY_INITRD_LINUX_STOCK} is for your distribution to declare
1409 images that are provided by the distribution. It should not be modified
1410 without understanding the consequences. They will be loaded first.
1411
1412 @samp{GRUB_EARLY_INITRD_LINUX_CUSTOM} is for your custom created images.
1413
1414 The default stock images are as follows, though they may be overridden by
1415 your distribution:
1416 @example
1417 intel-uc.img intel-ucode.img amd-uc.img amd-ucode.img early_ucode.cpio microcode.cpio
1418 @end example
1419
1420 @item GRUB_DISABLE_LINUX_UUID
1421 Normally, @command{grub-mkconfig} will generate menu entries that use
1422 universally-unique identifiers (UUIDs) to identify the root filesystem to
1423 the Linux kernel, using a @samp{root=UUID=...} kernel parameter.  This is
1424 usually more reliable, but in some cases it may not be appropriate.  To
1425 disable the use of UUIDs, set this option to @samp{true}.
1426
1427 @item GRUB_DISABLE_RECOVERY
1428 If this option is set to @samp{true}, disable the generation of recovery
1429 mode menu entries.
1430
1431 @item GRUB_VIDEO_BACKEND
1432 If graphical video support is required, either because the @samp{gfxterm}
1433 graphical terminal is in use or because @samp{GRUB_GFXPAYLOAD_LINUX} is set,
1434 then @command{grub-mkconfig} will normally load all available GRUB video
1435 drivers and use the one most appropriate for your hardware.  If you need to
1436 override this for some reason, then you can set this option.
1437
1438 After @command{grub-install} has been run, the available video drivers are
1439 listed in @file{/boot/grub/video.lst}.
1440
1441 @item GRUB_GFXMODE
1442 Set the resolution used on the @samp{gfxterm} graphical terminal.  Note that
1443 you can only use modes which your graphics card supports via VESA BIOS
1444 Extensions (VBE), so for example native LCD panel resolutions may not be
1445 available.  The default is @samp{auto}, which tries to select a preferred
1446 resolution.  @xref{gfxmode}.
1447
1448 @item GRUB_BACKGROUND
1449 Set a background image for use with the @samp{gfxterm} graphical terminal.
1450 The value of this option must be a file readable by GRUB at boot time, and
1451 it must end with @file{.png}, @file{.tga}, @file{.jpg}, or @file{.jpeg}.
1452 The image will be scaled if necessary to fit the screen.
1453
1454 @item GRUB_THEME
1455 Set a theme for use with the @samp{gfxterm} graphical terminal.
1456
1457 @item GRUB_GFXPAYLOAD_LINUX
1458 Set to @samp{text} to force the Linux kernel to boot in normal text mode,
1459 @samp{keep} to preserve the graphics mode set using @samp{GRUB_GFXMODE},
1460 @samp{@var{width}x@var{height}}[@samp{x@var{depth}}] to set a particular
1461 graphics mode, or a sequence of these separated by commas or semicolons to
1462 try several modes in sequence.  @xref{gfxpayload}.
1463
1464 Depending on your kernel, your distribution, your graphics card, and the
1465 phase of the moon, note that using this option may cause GNU/Linux to suffer
1466 from various display problems, particularly during the early part of the
1467 boot sequence.  If you have problems, set this option to @samp{text} and
1468 GRUB will tell Linux to boot in normal text mode.
1469
1470 @item GRUB_DISABLE_OS_PROBER
1471 Normally, @command{grub-mkconfig} will try to use the external
1472 @command{os-prober} program, if installed, to discover other operating
1473 systems installed on the same system and generate appropriate menu entries
1474 for them.  Set this option to @samp{true} to disable this.
1475
1476 @item GRUB_OS_PROBER_SKIP_LIST
1477 List of space-separated FS UUIDs of filesystems to be ignored from os-prober
1478 output. For efi chainloaders it's <UUID>@@<EFI FILE>
1479
1480 @item GRUB_DISABLE_SUBMENU
1481 Normally, @command{grub-mkconfig} will generate top level menu entry for
1482 the kernel with highest version number and put all other found kernels
1483 or alternative menu entries for recovery mode in submenu. For entries returned
1484 by @command{os-prober} first entry will be put on top level and all others
1485 in submenu. If this option is set to @samp{y}, flat menu with all entries
1486 on top level will be generated instead. Changing this option will require
1487 changing existing values of @samp{GRUB_DEFAULT}, @samp{fallback} (@pxref{fallback})
1488 and @samp{default} (@pxref{default}) environment variables as well as saved
1489 default entry using @command{grub-set-default} and value used with
1490 @command{grub-reboot}.
1491
1492 @item GRUB_ENABLE_CRYPTODISK
1493 If set to @samp{y}, @command{grub-mkconfig} and @command{grub-install} will
1494 check for encrypted disks and generate additional commands needed to access
1495 them during boot.  Note that in this case unattended boot is not possible
1496 because GRUB will wait for passphrase to unlock encrypted container.
1497
1498 @item GRUB_INIT_TUNE
1499 Play a tune on the speaker when GRUB starts.  This is particularly useful
1500 for users unable to see the screen.  The value of this option is passed
1501 directly to @ref{play}.
1502
1503 @item GRUB_BADRAM
1504 If this option is set, GRUB will issue a @ref{badram} command to filter
1505 out specified regions of RAM.
1506
1507 @item GRUB_PRELOAD_MODULES
1508 This option may be set to a list of GRUB module names separated by spaces.
1509 Each module will be loaded as early as possible, at the start of
1510 @file{grub.cfg}.
1511
1512 @end table
1513
1514 The following options are still accepted for compatibility with existing
1515 configurations, but have better replacements:
1516
1517 @table @samp
1518 @item GRUB_HIDDEN_TIMEOUT
1519 Wait this many seconds before displaying the menu.  If @key{ESC} is pressed
1520 during that time, display the menu and wait for input according to
1521 @samp{GRUB_TIMEOUT}.  If a hotkey associated with a menu entry is pressed,
1522 boot the associated menu entry immediately.  If the timeout expires before
1523 either of these happens, display the menu for the number of seconds
1524 specified in @samp{GRUB_TIMEOUT} before booting the default entry.
1525
1526 If you set @samp{GRUB_HIDDEN_TIMEOUT}, you should also set
1527 @samp{GRUB_TIMEOUT=0} so that the menu is not displayed at all unless
1528 @key{ESC} is pressed.
1529
1530 This option is unset by default, and is deprecated in favour of the less
1531 confusing @samp{GRUB_TIMEOUT_STYLE=countdown} or
1532 @samp{GRUB_TIMEOUT_STYLE=hidden}.
1533
1534 @item GRUB_HIDDEN_TIMEOUT_QUIET
1535 In conjunction with @samp{GRUB_HIDDEN_TIMEOUT}, set this to @samp{true} to
1536 suppress the verbose countdown while waiting for a key to be pressed before
1537 displaying the menu.
1538
1539 This option is unset by default, and is deprecated in favour of the less
1540 confusing @samp{GRUB_TIMEOUT_STYLE=countdown}.
1541
1542 @item GRUB_HIDDEN_TIMEOUT_BUTTON
1543 Variant of @samp{GRUB_HIDDEN_TIMEOUT}, used to support vendor-specific power
1544 buttons.  @xref{Vendor power-on keys}.
1545
1546 This option is unset by default, and is deprecated in favour of the less
1547 confusing @samp{GRUB_TIMEOUT_STYLE=countdown} or
1548 @samp{GRUB_TIMEOUT_STYLE=hidden}.
1549
1550 @end table
1551
1552 For more detailed customisation of @command{grub-mkconfig}'s output, you may
1553 edit the scripts in @file{/etc/grub.d} directly.
1554 @file{/etc/grub.d/40_custom} is particularly useful for adding entire custom
1555 menu entries; simply type the menu entries you want to add at the end of
1556 that file, making sure to leave at least the first two lines intact.
1557
1558
1559 @node Shell-like scripting
1560 @section Writing full configuration files directly
1561
1562 @c Some of this section is derived from the GNU Bash manual page, also
1563 @c copyrighted by the FSF.
1564
1565 @file{grub.cfg} is written in GRUB's built-in scripting language, which has
1566 a syntax quite similar to that of GNU Bash and other Bourne shell
1567 derivatives.
1568
1569 @heading Words
1570
1571 A @dfn{word} is a sequence of characters considered as a single unit by
1572 GRUB.  Words are separated by @dfn{metacharacters}, which are the following
1573 plus space, tab, and newline:
1574
1575 @example
1576 @{ @} | & $ ; < >
1577 @end example
1578  
1579 Quoting may be used to include metacharacters in words; see below.
1580
1581 @heading Reserved words
1582
1583 Reserved words have a special meaning to GRUB.  The following words are
1584 recognised as reserved when unquoted and either the first word of a simple
1585 command or the third word of a @code{for} command:
1586
1587 @example
1588 ! [[ ]] @{ @}
1589 case do done elif else esac fi for function
1590 if in menuentry select then time until while
1591 @end example
1592
1593 Not all of these reserved words have a useful purpose yet; some are reserved
1594 for future expansion.
1595
1596 @heading Quoting
1597
1598 Quoting is used to remove the special meaning of certain characters or
1599 words.  It can be used to treat metacharacters as part of a word, to prevent
1600 reserved words from being recognised as such, and to prevent variable
1601 expansion.
1602
1603 There are three quoting mechanisms: the escape character, single quotes, and
1604 double quotes.
1605
1606 A non-quoted backslash (\) is the @dfn{escape character}.  It preserves the
1607 literal value of the next character that follows, with the exception of
1608 newline.
1609
1610 Enclosing characters in single quotes preserves the literal value of each
1611 character within the quotes.  A single quote may not occur between single
1612 quotes, even when preceded by a backslash.
1613
1614 Enclosing characters in double quotes preserves the literal value of all
1615 characters within the quotes, with the exception of @samp{$} and @samp{\}.
1616 The @samp{$} character retains its special meaning within double quotes.
1617 The backslash retains its special meaning only when followed by one of the
1618 following characters: @samp{$}, @samp{"}, @samp{\}, or newline.  A
1619 backslash-newline pair is treated as a line continuation (that is, it is
1620 removed from the input stream and effectively ignored@footnote{Currently a
1621 backslash-newline pair within a variable name is not handled properly, so
1622 use this feature with some care.}).  A double quote may be quoted within
1623 double quotes by preceding it with a backslash.
1624
1625 @heading Variable expansion
1626
1627 The @samp{$} character introduces variable expansion.  The variable name to
1628 be expanded may be enclosed in braces, which are optional but serve to
1629 protect the variable to be expanded from characters immediately following it
1630 which could be interpreted as part of the name.
1631
1632 Normal variable names begin with an alphabetic character, followed by zero
1633 or more alphanumeric characters.  These names refer to entries in the GRUB
1634 environment (@pxref{Environment}).
1635
1636 Positional variable names consist of one or more digits.  They represent
1637 parameters passed to function calls, with @samp{$1} representing the first
1638 parameter, and so on.
1639
1640 The special variable name @samp{?} expands to the exit status of the most
1641 recently executed command.  When positional variable names are active, other
1642 special variable names @samp{@@}, @samp{*} and @samp{#} are defined and they
1643 expand to all positional parameters with necessary quoting, positional
1644 parameters without any quoting, and positional parameter count respectively.
1645
1646 @heading Comments
1647
1648 A word beginning with @samp{#} causes that word and all remaining characters
1649 on that line to be ignored.
1650
1651 @heading Simple commands
1652
1653 A @dfn{simple command} is a sequence of words separated by spaces or tabs
1654 and terminated by a semicolon or a newline.  The first word specifies the
1655 command to be executed.  The remaining words are passed as arguments to the
1656 invoked command.
1657
1658 The return value of a simple command is its exit status.  If the reserved
1659 word @code{!} precedes the command, then the return value is instead the
1660 logical negation of the command's exit status.
1661
1662 @heading Compound commands
1663
1664 A @dfn{compound command} is one of the following:
1665
1666 @table @asis
1667 @item for @var{name} in @var{word} @dots{}; do @var{list}; done
1668 The list of words following @code{in} is expanded, generating a list of
1669 items.  The variable @var{name} is set to each element of this list in turn,
1670 and @var{list} is executed each time.  The return value is the exit status
1671 of the last command that executes.  If the expansion of the items following
1672 @code{in} results in an empty list, no commands are executed, and the return
1673 status is 0.
1674
1675 @item if @var{list}; then @var{list}; [elif @var{list}; then @var{list};] @dots{} [else @var{list};] fi
1676 The @code{if} @var{list} is executed.  If its exit status is zero, the
1677 @code{then} @var{list} is executed.  Otherwise, each @code{elif} @var{list}
1678 is executed in turn, and if its exit status is zero, the corresponding
1679 @code{then} @var{list} is executed and the command completes.  Otherwise,
1680 the @code{else} @var{list} is executed, if present.  The exit status is the
1681 exit status of the last command executed, or zero if no condition tested
1682 true.
1683
1684 @item while @var{cond}; do @var{list}; done
1685 @itemx until @var{cond}; do @var{list}; done
1686 The @code{while} command continuously executes the @code{do} @var{list} as
1687 long as the last command in @var{cond} returns an exit status of zero.  The
1688 @code{until} command is identical to the @code{while} command, except that
1689 the test is negated; the @code{do} @var{list} is executed as long as the
1690 last command in @var{cond} returns a non-zero exit status.  The exit status
1691 of the @code{while} and @code{until} commands is the exit status of the last
1692 @code{do} @var{list} command executed, or zero if none was executed.
1693
1694 @item function @var{name} @{ @var{command}; @dots{} @}
1695 This defines a function named @var{name}.  The @dfn{body} of the function is
1696 the list of commands within braces, each of which must be terminated with a
1697 semicolon or a newline.  This list of commands will be executed whenever
1698 @var{name} is specified as the name of a simple command.  Function
1699 definitions do not affect the exit status in @code{$?}.  When executed, the
1700 exit status of a function is the exit status of the last command executed in
1701 the body.
1702
1703 @item menuentry @var{title} [@option{--class=class} @dots{}] [@option{--users=users}] [@option{--unrestricted}] [@option{--hotkey=key}] [@option{--id=id}] @{ @var{command}; @dots{} @}
1704 @xref{menuentry}.
1705 @end table
1706
1707 @heading Built-in Commands
1708
1709 Some built-in commands are also provided by GRUB script to help script
1710 writers perform actions that are otherwise not possible.  For example, these
1711 include commands to jump out of a loop without fully completing it, etc.
1712
1713 @table @asis
1714 @item break [@code{n}]
1715 Exit from within a @code{for}, @code{while}, or @code{until} loop.  If
1716 @code{n} is specified, break @code{n} levels.  @code{n} must be greater than
1717 or equal to 1.  If @code{n} is greater than the number of enclosing loops,
1718 all enclosing loops are exited.  The return value is 0 unless @code{n} is
1719 not greater than or equal to 1.
1720
1721 @item continue [@code{n}]
1722 Resume the next iteration of the enclosing @code{for}, @code{while} or
1723 @code{until} loop.  If @code{n} is specified, resume at the @code{n}th
1724 enclosing loop.  @code{n} must be greater than or equal to 1.  If @code{n}
1725 is greater than the number of enclosing loops, the last enclosing loop (the
1726 @dfn{top-level} loop) is resumed.  The return value is 0 unless @code{n} is
1727 not greater than or equal to 1.
1728
1729 @item return [@code{n}]
1730 Causes a function to exit with the return value specified by @code{n}.  If
1731 @code{n} is omitted, the return status is that of the last command executed
1732 in the function body.  If used outside a function the return status is
1733 false.
1734
1735 @item setparams [@code{arg}] @dots{}
1736 Replace positional parameters starting with @code{$1} with arguments to
1737 @command{setparams}.
1738
1739 @item shift [@code{n}]
1740 The positional parameters from @code{n}+1 @dots{} are renamed to
1741 @code{$1}@dots{}.  Parameters represented by the numbers @code{$#} down to
1742 @code{$#}-@code{n}+1 are unset.  @code{n} must be a non-negative number less
1743 than or equal to @code{$#}.  If @code{n} is 0, no parameters are changed.
1744 If @code{n} is not given, it is assumed to be 1.  If @code{n} is greater
1745 than @code{$#}, the positional parameters are not changed.  The return
1746 status is greater than zero if @code{n} is greater than @code{$#} or less
1747 than zero; otherwise 0.
1748
1749 @end table
1750
1751 @node Multi-boot manual config
1752 @section Multi-boot manual config
1753
1754 Currently autogenerating config files for multi-boot environments depends on
1755 os-prober and has several shortcomings. While fixing it is scheduled for the
1756 next release, meanwhile you can make use of the power of GRUB syntax and do it
1757 yourself. A possible configuration is detailed here, feel free to adjust to your
1758 needs.
1759
1760 First create a separate GRUB partition, big enough to hold GRUB. Some of the
1761 following entries show how to load OS installer images from this same partition,
1762 for that you obviously need to make the partition large enough to hold those
1763 images as well.
1764 Mount this partition on/mnt/boot and disable GRUB in all OSes and manually
1765 install self-compiled latest GRUB with:
1766
1767 @code{grub-install --boot-directory=/mnt/boot /dev/sda}
1768
1769 In all the OSes install GRUB tools but disable installing GRUB in bootsector,
1770 so you'll have menu.lst and grub.cfg available for use. Also disable os-prober
1771 use by setting:
1772
1773 @code{GRUB_DISABLE_OS_PROBER=true}
1774
1775 in /etc/default/grub
1776
1777 Then write a grub.cfg (/mnt/boot/grub/grub.cfg):
1778
1779 @example
1780
1781 menuentry "OS using grub2" @{
1782    insmod xfs
1783    search --set=root --label OS1 --hint hd0,msdos8
1784    configfile /boot/grub/grub.cfg
1785 @}
1786
1787 menuentry "OS using grub2-legacy" @{
1788    insmod ext2
1789    search --set=root --label OS2 --hint hd0,msdos6
1790    legacy_configfile /boot/grub/menu.lst
1791 @}
1792
1793 menuentry "Windows XP" @{
1794    insmod ntfs
1795    search --set=root --label WINDOWS_XP --hint hd0,msdos1
1796    ntldr /ntldr
1797 @}
1798
1799 menuentry "Windows 7" @{
1800    insmod ntfs
1801    search --set=root --label WINDOWS_7 --hint hd0,msdos2
1802    ntldr /bootmgr
1803 @}
1804
1805 menuentry "FreeBSD" @{
1806           insmod zfs
1807           search --set=root --label freepool --hint hd0,msdos7
1808           kfreebsd /freebsd@@/boot/kernel/kernel
1809           kfreebsd_module_elf /freebsd@@/boot/kernel/opensolaris.ko
1810           kfreebsd_module_elf /freebsd@@/boot/kernel/zfs.ko
1811           kfreebsd_module /freebsd@@/boot/zfs/zpool.cache type=/boot/zfs/zpool.cache
1812           set kFreeBSD.vfs.root.mountfrom=zfs:freepool/freebsd
1813           set kFreeBSD.hw.psm.synaptics_support=1
1814 @}
1815
1816 menuentry "experimental GRUB" @{
1817           search --set=root --label GRUB --hint hd0,msdos5
1818           multiboot /experimental/grub/i386-pc/core.img
1819 @}
1820
1821 menuentry "Fedora 16 installer" @{
1822           search --set=root --label GRUB --hint hd0,msdos5
1823           linux /fedora/vmlinuz lang=en_US keymap=sg resolution=1280x800
1824           initrd /fedora/initrd.img
1825 @}
1826
1827 menuentry "Fedora rawhide installer" @{
1828           search --set=root --label GRUB --hint hd0,msdos5
1829           linux /fedora/vmlinuz repo=ftp://mirror.switch.ch/mirror/fedora/linux/development/rawhide/x86_64 lang=en_US keymap=sg resolution=1280x800
1830           initrd /fedora/initrd.img
1831 @}
1832
1833 menuentry "Debian sid installer" @{
1834           search --set=root --label GRUB --hint hd0,msdos5
1835           linux /debian/dists/sid/main/installer-amd64/current/images/hd-media/vmlinuz
1836           initrd /debian/dists/sid/main/installer-amd64/current/images/hd-media/initrd.gz
1837 @}
1838
1839 @end example
1840
1841 Notes:
1842 @itemize
1843 @item Argument to search after --label is FS LABEL. You can also use UUIDs with --fs-uuid UUID instead of --label LABEL. You could also use direct @code{root=hd0,msdosX} but this is not recommended due to device name instability.
1844 @end itemize
1845
1846 @node Embedded configuration
1847 @section Embedding a configuration file into GRUB
1848
1849 GRUB supports embedding a configuration file directly into the core image,
1850 so that it is loaded before entering normal mode.  This is useful, for
1851 example, when it is not straightforward to find the real configuration file,
1852 or when you need to debug problems with loading that file.
1853 @command{grub-install} uses this feature when it is not using BIOS disk
1854 functions or when installing to a different disk from the one containing
1855 @file{/boot/grub}, in which case it needs to use the @command{search}
1856 command (@pxref{search}) to find @file{/boot/grub}.
1857
1858 To embed a configuration file, use the @option{-c} option to
1859 @command{grub-mkimage}.  The file is copied into the core image, so it may
1860 reside anywhere on the file system, and may be removed after running
1861 @command{grub-mkimage}.
1862
1863 After the embedded configuration file (if any) is executed, GRUB will load
1864 the @samp{normal} module (@pxref{normal}), which will then read the real
1865 configuration file from @file{$prefix/grub.cfg}.  By this point, the
1866 @code{root} variable will also have been set to the root device name.  For
1867 example, @code{prefix} might be set to @samp{(hd0,1)/boot/grub}, and
1868 @code{root} might be set to @samp{hd0,1}.  Thus, in most cases, the embedded
1869 configuration file only needs to set the @code{prefix} and @code{root}
1870 variables, and then drop through to GRUB's normal processing.  A typical
1871 example of this might look like this:
1872
1873 @example
1874 @group
1875 search.fs_uuid 01234567-89ab-cdef-0123-456789abcdef root
1876 set prefix=($root)/boot/grub
1877 @end group
1878 @end example
1879
1880 (The @samp{search_fs_uuid} module must be included in the core image for this
1881 example to work.)
1882
1883 In more complex cases, it may be useful to read other configuration files
1884 directly from the embedded configuration file.  This allows such things as
1885 reading files not called @file{grub.cfg}, or reading files from a directory
1886 other than that where GRUB's loadable modules are installed.  To do this,
1887 include the @samp{configfile} and @samp{normal} modules in the core image,
1888 and embed a configuration file that uses the @command{configfile} command to
1889 load another file.  The following example of this also requires the
1890 @command{echo}, @command{search_label}, and @command{test} modules to be
1891 included in the core image:
1892
1893 @example
1894 @group
1895 search.fs_label grub root
1896 if [ -e /boot/grub/example/test1.cfg ]; then
1897     set prefix=($root)/boot/grub
1898     configfile /boot/grub/example/test1.cfg
1899 else
1900     if [ -e /boot/grub/example/test2.cfg ]; then
1901         set prefix=($root)/boot/grub
1902         configfile /boot/grub/example/test2.cfg
1903     else
1904         echo "Could not find an example configuration file!"
1905     fi
1906 fi
1907 @end group
1908 @end example
1909
1910 The embedded configuration file may not contain menu entries directly, but
1911 may only read them from elsewhere using @command{configfile}.
1912
1913 @node Theme file format
1914 @chapter Theme file format
1915 @section Introduction
1916 The GRUB graphical menu supports themes that can customize the layout and
1917 appearance of the GRUB boot menu.  The theme is configured through a plain
1918 text file that specifies the layout of the various GUI components (including
1919 the boot menu, timeout progress bar, and text messages) as well as the
1920 appearance using colors, fonts, and images. Example is available in docs/example_theme.txt
1921
1922 @section Theme Elements
1923 @subsection Colors
1924
1925 Colors can be specified in several ways:
1926
1927 @itemize
1928 @item HTML-style ``#RRGGBB'' or ``#RGB'' format, where *R*, *G*, and *B* are hexadecimal digits (e.g., ``#8899FF'')
1929 @item as comma-separated decimal RGB values (e.g., ``128, 128, 255'')
1930 @item with ``SVG 1.0 color names'' (e.g., ``cornflowerblue'') which must be specified in lowercase.
1931 @end itemize
1932 @subsection Fonts
1933 The fonts GRUB uses ``PFF2 font format'' bitmap fonts.  Fonts are specified
1934 with full font names.  Currently there is no
1935 provision for a preference list of fonts, or deriving one font from another.
1936 Fonts are loaded with the ``loadfont'' command in GRUB (@ref{loadfont}).  To see the list of
1937 loaded fonts, execute the ``lsfonts'' command (@ref{lsfonts}).  If there are too many fonts to
1938 fit on screen, do ``set pager=1'' before executing ``lsfonts''.
1939
1940
1941 @subsection Progress Bar
1942
1943 @float Figure, Pixmap-styled progress bar
1944 @c @image{Theme_progress_bar,,,,png}
1945 @end float
1946
1947 @float Figure, Plain progress bar, drawn with solid color.
1948 @c @image{Theme_progress_bar_filled,,,,png}
1949 @end float
1950
1951 Progress bars are used to display the remaining time before GRUB boots the
1952 default menu entry.  To create a progress bar that will display the remaining
1953 time before automatic boot, simply create a ``progress_bar'' component with
1954 the id ``__timeout__''.  This indicates to GRUB that the progress bar should
1955 be updated as time passes, and it should be made invisible if the countdown to
1956 automatic boot is interrupted by the user.
1957
1958 Progress bars may optionally have text displayed on them.  This text is
1959 controlled by variable ``text'' which contains a printf template with the
1960 only argument %d is the number of seconds remaining. Additionally special
1961 values ``@@TIMEOUT_NOTIFICATION_SHORT@@'', ``@@TIMEOUT_NOTIFICATION_MIDDLE@@'',
1962 ``@@TIMEOUT_NOTIFICATION_LONG@@'' are replaced with standard and translated
1963 templates.
1964
1965 @subsection Circular Progress Indicator
1966
1967 @c @image{Theme_circular_progress,,,,.png}
1968
1969 The circular progress indicator functions similarly to the progress bar.  When
1970 given an id of ``__timeout__'', GRUB updates the circular progress indicator's
1971 value to indicate the time remaining.  For the circular progress indicator,
1972 there are two images used to render it:  the *center* image, and the *tick*
1973 image.  The center image is rendered in the center of the component, while the
1974 tick image is used to render each mark along the circumference of the
1975 indicator.
1976
1977
1978 @subsection Labels
1979
1980 Text labels can be placed on the boot screen.  The font, color, and horizontal
1981 alignment can be specified for labels.  If a label is given the id
1982 ``__timeout__'', then the ``text'' property for that label is also updated
1983 with a message informing the user of the number of seconds remaining until
1984 automatic boot.  This is useful in case you want the text displayed somewhere
1985 else instead of directly on the progress bar.
1986
1987
1988 @subsection Boot Menu
1989
1990 @c @image{Theme_boot_menu,,,,.png}
1991
1992 The boot menu where GRUB displays the menu entries from the ``grub.cfg'' file.
1993 It is a list of items, where each item has a title and an optional icon.  The
1994 icon is selected based on the *classes* specified for the menu entry.  If
1995 there is a PNG file named ``myclass.png'' in the ``grub/themes/icons''
1996 directory, it will be displayed for items which have the class *myclass*.  The
1997 boot menu can be customized in several ways, such as the font and color used
1998 for the menu entry title, and by specifying styled boxes for the menu itself
1999 and for the selected item highlight.
2000
2001
2002 @subsection Styled Boxes
2003
2004 One of the most important features for customizing the layout is the use of
2005  *styled boxes*.  A styled box is composed of 9 rectangular (and potentially
2006 empty) regions, which are used to seamlessly draw the styled box on screen:
2007
2008 @multitable @columnfractions 0.3 0.3 0.3
2009 @item Northwest (nw) @tab North (n)  @tab Northeast (ne)
2010 @item West (w)       @tab Center (c) @tab East (e)
2011 @item Southwest (sw) @tab South (s)  @tab Southeast (se)
2012 @end multitable
2013
2014 To support any size of box on screen, the center slice and the slices for the
2015 top, bottom, and sides are all scaled to the correct size for the component on
2016 screen, using the following rules:
2017
2018 @enumerate
2019 @item The edge slices (north, south, east, and west) are scaled in the direction of the edge they are adjacent to.  For instance, the west slice is scaled vertically.
2020 @item The corner slices (northwest, northeast, southeast, and southwest) are not scaled.
2021 @item The center slice is scaled to fill the remaining space in the middle.
2022 @end enumerate
2023
2024 As an example of how an image might be sliced up, consider the styled box
2025 used for a terminal view.
2026
2027 @float Figure, An example of the slices (in red) used for a terminal window. This drawing was created and sliced in Inkscape_, as the next section explains.
2028 @c @image{Box_slice_example_terminal,,,,.png}
2029 @end float
2030    
2031 @subsection Creating Styled Box Images
2032
2033 The Inkscape_ scalable vector graphics editor is a very useful tool for
2034 creating styled box images.  One process that works well for slicing a drawing
2035 into the necessary image slices is:
2036
2037 @enumerate
2038 @item Create or open the drawing you'd like use.
2039 @item Create a new layer on the top of the layer stack.  Make it visible.  Select this layer as the current layer.
2040 @item Draw 9 rectangles on your drawing where you'd like the slices to be.  Clear the fill option, and set the stroke to 1 pixel wide solid stroke.  The corners of the slices must meet precisely; if it is off by a single pixel, it will probably be evident when the styled box is rendered in the GRUB menu.  You should probably go to File | Document Properties | Grids and enable a grid or create a guide (click on one of the rulers next to the drawing and drag over the drawing; release the mouse button to place the guide) to help place the rectangles precisely.
2041 @item Right click on the center slice rectangle and choose Object Properties. Change the "Id" to ``slice_c`` and click Set.  Repeat this for the remaining 8 rectangles, giving them Id values of ``slice_n``, ``slice_ne``, ``slice_e``, and so on according to the location.
2042 @item Save the drawing.
2043 @item Select all the slice rectangles.  With the slice layer selected, you can simply press Ctrl+A to select all rectangles.  The status bar should indicate that 9 rectangles are selected.
2044 @item Click the layer hide icon for the slice layer in the layer palette.  The rectangles will remain selected, even though they are hidden.
2045 @item Choose File | Export Bitmap and check the *Batch export 9 selected objects* box.  Make sure that *Hide all except selected* is unchecked. click *Export*.  This will create PNG files in the same directory as the drawing, named after the slices.  These can now be used for a styled box in a GRUB theme.
2046 @end enumerate
2047
2048 @section Theme File Manual
2049
2050 The theme file is a plain text file.  Lines that begin with ``#`` are ignored
2051 and considered comments.  (Note: This may not be the case if the previous line
2052 ended where a value was expected.)
2053
2054 The theme file contains two types of statements:
2055 @enumerate
2056 @item Global properties.
2057 @item Component construction.
2058 @end enumerate
2059
2060 @subsection Global Properties
2061
2062 @subsection Format
2063
2064 Global properties are specified with the simple format:
2065 @itemize
2066 @item name1: value1
2067 @item name2: "value which may contain spaces"
2068 @item name3: #88F
2069 @end itemize
2070
2071 In this example, name3 is assigned a color value.
2072
2073
2074 @subsection Global Property List
2075
2076 @multitable @columnfractions 0.3 0.6
2077 @item title-text
2078    @tab Specifies the text to display at the top center of the screen as a title.
2079 @item title-font
2080    @tab Defines the font used for the title message at the top of the screen.
2081 @item title-color
2082    @tab Defines the color of the title message.
2083 @item message-font
2084    @tab Currently unused. Left for backward compatibility.
2085 @item message-color
2086    @tab Currently unused. Left for backward compatibility.
2087 @item message-bg-color
2088    @tab Currently unused. Left for backward compatibility.
2089 @item desktop-image
2090    @tab Specifies the image to use as the background.  It will be scaled
2091    to fit the screen size or proportionally scaled depending on the scale
2092    method.
2093 @item desktop-image-scale-method
2094    @tab Specifies the scaling method for the *desktop-image*. Options are
2095    ``stretch``, ``crop``, ``padding``, ``fitwidth``, ``fitheight``.
2096    ``stretch`` for fitting the screen size. Otherwise it is proportional
2097    scaling of a part of *desktop-image* to the part of the screen.
2098    ``crop`` part of the *desktop-image* will be proportionally scaled to
2099    fit the screen sizes. ``padding`` the entire *desktop-image* will be
2100    contained on the screen. ``fitwidth`` for fitting the *desktop-image*'s
2101    width with screen width. ``fitheight`` for fitting the *desktop-image*'s
2102    height with the screen height. Default is ``stretch``.
2103 @item desktop-image-h-align
2104    @tab Specifies the horizontal alignment of the *desktop-image* if
2105    *desktop-image-scale-method* isn't equeal to ``stretch``. Options are
2106    ``left``, ``center``, ``right``. Default is ``center``.
2107 @item desktop-image-v-align
2108    @tab Specifies the vertical alignment of the *desktop-image* if
2109    *desktop-image-scale-method* isn't equeal to ``stretch``. Options are
2110    ``top``, ``center``, ``bottom``. Default is ``center``.
2111 @item desktop-color
2112    @tab Specifies the color for the background if *desktop-image* is not
2113    specified.
2114 @item terminal-box
2115    @tab Specifies the file name pattern for the styled box slices used for the
2116    command line terminal window.  For example, ``terminal-box: terminal_*.png``
2117    will use the images ``terminal_c.png`` as the center area, ``terminal_n.png``
2118    as the north (top) edge, ``terminal_nw.png`` as the northwest (upper left)
2119    corner, and so on.  If the image for any slice is not found, it will simply
2120    be left empty.
2121 @item terminal-border
2122    @tab Specifies the border width of the terminal window.
2123 @item terminal-left
2124    @tab Specifies the left coordinate of the terminal window.
2125 @item terminal-top
2126    @tab Specifies the top coordinate of the terminal window.
2127 @item terminal-width
2128    @tab Specifies the width of the terminal window.
2129 @item terminal-height
2130    @tab Specifies the height of the terminal window.
2131 @end multitable
2132
2133
2134 @subsection Component Construction
2135
2136 Greater customizability comes is provided by components.  A tree of components
2137 forms the user interface.  *Containers* are components that can contain other
2138 components, and there is always a single root component which is an instance
2139 of a *canvas* container.
2140
2141 Components are created in the theme file by prefixing the type of component
2142 with a '+' sign:
2143
2144 @code{   + label @{ text="GRUB" font="aqui 11" color="#8FF" @} }
2145
2146 properties of a component are specified as "name = value" (whitespace
2147 surrounding tokens is optional and is ignored) where *value* may be:
2148 @itemize
2149 @item a single word (e.g., ``align = center``, ``color = #FF8080``),
2150 @item a quoted string (e.g., ``text = "Hello, World!"``), or
2151 @item a tuple (e.g., ``preferred_size = (120, 80)``).
2152 @end itemize
2153
2154 @subsection Component List
2155
2156 The following is a list of the components and the properties they support.
2157
2158 @itemize
2159 @item label
2160    A label displays a line of text.
2161    
2162    Properties:
2163    @multitable @columnfractions 0.2 0.7
2164    @item id
2165       @tab Set to ``__timeout__`` to display the time elapsed to an automatical
2166       boot of the default entry.
2167    @item text
2168       @tab The text to display. If ``id`` is set to ``__timeout__`` and no
2169       ``text`` property is set then the amount of seconds will be shown.
2170       If set to ``@@KEYMAP_SHORT@@``, ``@@KEYMAP_MIDDLE@@`` or
2171       ``@@KEYMAP_LONG@@`` then predefined hotkey information will be shown.
2172    @item font
2173       @tab The font to use for text display.
2174    @item color
2175       @tab The color of the text.
2176    @item align
2177       @tab The horizontal alignment of the text within the component.
2178       Options are ``left``, ``center`` and ``right``.
2179    @item visible
2180       @tab Set to ``false`` to hide the label.
2181    @end multitable
2182
2183 @item image
2184    A component that displays an image.  The image is scaled to fit
2185    the component.
2186
2187    Properties:
2188
2189    @multitable @columnfractions 0.2 0.7
2190    @item file
2191       @tab The full path to the image file to load.
2192    @end multitable
2193
2194 @item progress_bar
2195    Displays a horizontally oriented progress bar.  It can be rendered using
2196    simple solid filled rectangles, or using a pair of pixmap styled boxes.
2197
2198    Properties:
2199
2200    @multitable @columnfractions 0.2 0.7
2201    @item id
2202       @tab Set to ``__timeout__`` to display the time elapsed to an automatical
2203       boot of the default entry.
2204    @item fg_color
2205       @tab The foreground color for plain solid color rendering.
2206    @item bg_color
2207       @tab The background color for plain solid color rendering.
2208    @item border_color
2209       @tab The border color for plain solid color rendering.
2210    @item text_color
2211       @tab The text color.
2212    @item bar_style
2213       @tab The styled box specification for the frame of the progress bar.
2214       Example: ``progress_frame_*.png``
2215       If the value is equal to ``highlight_style`` then no styled boxes
2216       will be shown.
2217    @item highlight_style
2218       @tab The styled box specification for the highlighted region of the
2219       progress bar. This box will be used to paint just the highlighted region
2220       of the bar, and will be increased in size as the bar nears completion.
2221       Example: ``progress_hl_*.png``.
2222       If the value is equal to ``bar_style`` then no styled boxes
2223       will be shown.
2224    @item highlight_overlay
2225       @tab If this option is set to ``true`` then the highlight box
2226       side slices (every slice except the center slice) will overlay the
2227       frame box side slices. And the center slice of the highlight box
2228       can move all the way (from top to bottom), being drawn on the center
2229       slice of the frame box. That way we can make a progress bar with
2230       round-shaped edges so there won't be a free space from the highlight to
2231       the frame in top and bottom scrollbar positions. Default is ``false``.
2232    @item font
2233       @tab The font to use for progress bar.
2234    @item text
2235       @tab The text to display on the progress bar.  If the progress bar's ID
2236       is set to ``__timeout__`` and the value of this property is set to
2237       ``@@TIMEOUT_NOTIFICATION_SHORT@@``, ``@@TIMEOUT_NOTIFICATION_MIDDLE@@``
2238       or ``@@TIMEOUT_NOTIFICATION_LONG@@``, then GRUB will update this
2239       property with an informative message as the timeout approaches.
2240    @end multitable
2241
2242 @item circular_progress
2243    Displays a circular progress indicator.  The appearance of this component
2244    is determined by two images:  the *center* image and the *tick* image.  The
2245    center image is generally larger and will be drawn in the center of the
2246    component.  Around the circumference of a circle within the component, the
2247    tick image will be drawn a certain number of times, depending on the
2248    properties of the component.
2249
2250    Properties:
2251
2252    @multitable @columnfractions 0.3 0.6
2253    @item id
2254       @tab Set to ``__timeout__`` to display the time elapsed to an automatical
2255       boot of the default entry.
2256    @item center_bitmap
2257       @tab The file name of the image to draw in the center of the component.
2258    @item tick_bitmap
2259       @tab The file name of the image to draw for the tick marks.
2260    @item num_ticks
2261       @tab The number of ticks that make up a full circle.
2262    @item ticks_disappear
2263       @tab Boolean value indicating whether tick marks should progressively appear,
2264       or progressively disappear as *value* approaches *end*.  Specify
2265       ``true`` or ``false``. Default is ``false``.
2266    @item start_angle
2267       @tab The position of the first tick mark to appear or disappear.
2268       Measured in "parrots", 1 "parrot" = 1 / 256 of the full circle.
2269       Use values ``xxx deg`` or ``xxx \xc2\xb0`` to set the angle in degrees.
2270    @end multitable
2271
2272 @item boot_menu
2273    Displays the GRUB boot menu.  It allows selecting items and executing them.
2274
2275    Properties:
2276
2277    @multitable @columnfractions 0.4 0.5
2278    @item item_font
2279       @tab The font to use for the menu item titles.
2280    @item selected_item_font
2281       @tab The font to use for the selected menu item, or ``inherit`` (the default)
2282       to use ``item_font`` for the selected menu item as well.
2283    @item item_color
2284       @tab The color to use for the menu item titles.
2285    @item selected_item_color
2286       @tab The color to use for the selected menu item, or ``inherit`` (the default)
2287       to use ``item_color`` for the selected menu item as well.
2288    @item icon_width
2289       @tab The width of menu item icons.  Icons are scaled to the specified size.
2290    @item icon_height
2291       @tab The height of menu item icons.
2292    @item item_height
2293       @tab The height of each menu item in pixels.
2294    @item item_padding
2295       @tab The amount of space in pixels to leave on each side of the menu item
2296       contents.
2297    @item item_icon_space
2298       @tab The space between an item's icon and the title text, in pixels.
2299    @item item_spacing
2300       @tab The amount of space to leave between menu items, in pixels.
2301    @item menu_pixmap_style
2302       @tab The image file pattern for the menu frame styled box.
2303       Example:  ``menu_*.png`` (this will use images such as ``menu_c.png``,
2304       ``menu_w.png``, `menu_nw.png``, etc.)
2305    @item item_pixmap_style
2306       @tab The image file pattern for the item styled box.
2307    @item selected_item_pixmap_style
2308       @tab The image file pattern for the selected item highlight styled box.
2309    @item scrollbar
2310       @tab Boolean value indicating whether the scroll bar should be drawn if the
2311       frame and thumb styled boxes are configured.
2312    @item scrollbar_frame
2313       @tab The image file pattern for the entire scroll bar.
2314       Example:  ``scrollbar_*.png``
2315    @item scrollbar_thumb
2316       @tab The image file pattern for the scroll bar thumb (the part of the scroll
2317       bar that moves as scrolling occurs).
2318       Example:  ``scrollbar_thumb_*.png``
2319    @item scrollbar_thumb_overlay
2320       @tab If this option is set to ``true`` then the scrollbar thumb
2321       side slices (every slice except the center slice) will overlay the
2322       scrollbar frame side slices. And the center slice of the scrollbar_thumb
2323       can move all the way (from top to bottom), being drawn on the center
2324       slice of the scrollbar frame. That way we can make a scrollbar with
2325       round-shaped edges so there won't be a free space from the thumb to
2326       the frame in top and bottom scrollbar positions. Default is ``false``.
2327    @item scrollbar_slice
2328       @tab The menu frame styled box's slice in which the scrollbar will be
2329       drawn. Possible values are ``west``, ``center``, ``east`` (default).
2330       ``west`` - the scrollbar will be drawn in the west slice (right-aligned).
2331       ``east`` - the scrollbar will be drawn in the east slice (left-aligned).
2332       ``center`` - the scrollbar will be drawn in the center slice.
2333       Note: in case of ``center`` slice:
2334       a) If the scrollbar should be drawn then boot menu entry's width is
2335       decreased by the scrollbar's width and the scrollbar is drawn at the
2336       right side of the center slice.
2337       b) If the scrollbar won't be drawn then the boot menu entry's width
2338       is the width of the center slice.
2339       c) We don't necessary need the menu pixmap box to display the scrollbar.
2340    @item scrollbar_left_pad
2341       @tab The left scrollbar padding in pixels.
2342       Unused if ``scrollbar_slice`` is ``west``.
2343    @item scrollbar_right_pad
2344       @tab The right scrollbar padding in pixels.
2345       Unused if ``scrollbar_slice`` is ``east``.
2346    @item scrollbar_top_pad
2347       @tab The top scrollbar padding in pixels.
2348    @item scrollbar_bottom_pad
2349       @tab The bottom scrollbar padding in pixels.
2350    @item visible
2351       @tab Set to ``false`` to hide the boot menu.
2352    @end multitable
2353
2354 @item canvas
2355    Canvas is a container that allows manual placement of components within it.
2356    It does not alter the positions of its child components.  It assigns all
2357    child components their preferred sizes.
2358
2359 @item hbox
2360    The *hbox* container lays out its children from left to right, giving each
2361    one its preferred width.  The height of each child is set to the maximum of
2362    the preferred heights of all children.
2363    
2364 @item vbox
2365    The *vbox* container lays out its children from top to bottom, giving each
2366    one its preferred height.  The width of each child is set to the maximum of
2367    the preferred widths of all children.
2368 @end itemize
2369
2370
2371 @subsection Common properties
2372
2373 The following properties are supported by all components:
2374 @table @samp
2375 @item left
2376      The distance from the left border of container to left border of the object in either of three formats:
2377         @multitable @columnfractions 0.2 0.7
2378              @item x @tab Value in pixels
2379              @item p% @tab Percentage
2380              @item p%+x @tab mixture of both
2381         @end multitable
2382 @item top
2383       The distance from the left border of container to left border of the object in same format.
2384 @item width
2385       The width of object in same format.
2386 @item height
2387       The height of object in same format.
2388 @item id 
2389    The identifier for the component.  This can be any arbitrary string.
2390    The ID can be used by scripts to refer to various components in the GUI
2391    component tree.  Currently, there is one special ID value that GRUB
2392    recognizes:
2393
2394    @multitable @columnfractions 0.2 0.7
2395    @item ``__timeout__``
2396       @tab Component with this ID will be updated by GRUB and will indicate
2397       time elapsed to an automatical boot of the default entry.
2398       Affected components: ``label``, ``circular_progress``, ``progress_bar``.
2399    @end multitable
2400 @end table
2401
2402
2403
2404 @node Network
2405 @chapter Booting GRUB from the network
2406
2407 The following instructions don't work for *-emu, i386-qemu, i386-coreboot,
2408 i386-multiboot, mips_loongson, mips-arc and mips_qemu_mips
2409
2410 To generate a netbootable directory, run:
2411
2412 @example
2413 @group
2414 grub-mknetdir --net-directory=/srv/tftp --subdir=/boot/grub -d /usr/lib/grub/<platform>
2415 @end group
2416 @end example
2417
2418 E.g. for i386-pc:
2419
2420 @example
2421 @group
2422 grub-mknetdir --net-directory=/srv/tftp --subdir=/boot/grub -d /usr/lib/grub/i386-pc
2423 @end group
2424 @end example
2425
2426 Then follow instructions printed out by grub-mknetdir on configuring your DHCP
2427 server.
2428
2429 After GRUB has started, files on the TFTP server will be accessible via the
2430 @samp{(tftp)} device.
2431
2432 The server IP address can be controlled by changing the
2433 @samp{(tftp)} device name to @samp{(tftp,@var{server-ip})}. Note that
2434 this should be changed both in the prefix and in any references to the
2435 device name in the configuration file.
2436
2437 GRUB provides several environment variables which may be used to inspect or
2438 change the behaviour of the PXE device. In the following description
2439 @var{<interface>} is placeholder for the name of network interface (platform
2440 dependent):
2441
2442 @table @samp
2443 @item net_@var{<interface>}_ip
2444 The network interface's IP address.  Read-only.
2445
2446 @item net_@var{<interface>}_mac
2447 The network interface's MAC address.  Read-only.
2448
2449 @item net_@var{<interface>}_hostname
2450 The client host name provided by DHCP.  Read-only.
2451
2452 @item net_@var{<interface>}_domain
2453 The client domain name provided by DHCP.  Read-only.
2454
2455 @item net_@var{<interface>}_rootpath
2456 The path to the client's root disk provided by DHCP.  Read-only.
2457
2458 @item net_@var{<interface>}_extensionspath
2459 The path to additional DHCP vendor extensions provided by DHCP.  Read-only.
2460
2461 @item net_@var{<interface>}_boot_file
2462 The boot file name provided by DHCP.  Read-only.
2463
2464 @item net_@var{<interface>}_dhcp_server_name
2465 The name of the DHCP server responsible for these boot parameters.
2466 Read-only.
2467
2468 @item net_@var{<interface>}_next_server
2469 The IP address of the next (usually, TFTP) server provided by DHCP.
2470 Read-only.
2471
2472 @item net_default_interface
2473 Initially set to name of network interface that was used to load grub.
2474 Read-write, although setting it affects only interpretation of
2475 @samp{net_default_ip} and @samp{net_default_mac}
2476
2477 @item net_default_ip
2478 The IP address of default interface.  Read-only. This is alias for the
2479 @samp{net_$@{net_default_interface@}_ip}.
2480
2481 @item net_default_mac
2482 The default interface's MAC address.  Read-only.  This is alias for the
2483 @samp{net_$@{net_default_interface@}_mac}.
2484
2485 @item net_default_server
2486 The default server used by network drives (@pxref{Device syntax}).  Read-write,
2487 although setting this is only useful before opening a network device.
2488
2489 @end table
2490
2491
2492 @node Serial terminal
2493 @chapter Using GRUB via a serial line
2494
2495 This chapter describes how to use the serial terminal support in GRUB.
2496
2497 If you have many computers or computers with no display/keyboard, it
2498 could be very useful to control the computers through serial
2499 communications. To connect one computer with another via a serial line,
2500 you need to prepare a null-modem (cross) serial cable, and you may need
2501 to have multiport serial boards, if your computer doesn't have extra
2502 serial ports. In addition, a terminal emulator is also required, such as
2503 minicom. Refer to a manual of your operating system, for more
2504 information.
2505
2506 As for GRUB, the instruction to set up a serial terminal is quite
2507 simple.  Here is an example:
2508
2509 @example
2510 @group
2511 grub> @kbd{serial --unit=0 --speed=9600}
2512 grub> @kbd{terminal_input serial; terminal_output serial}
2513 @end group
2514 @end example
2515
2516 The command @command{serial} initializes the serial unit 0 with the
2517 speed 9600bps. The serial unit 0 is usually called @samp{COM1}, so, if
2518 you want to use COM2, you must specify @samp{--unit=1} instead. This
2519 command accepts many other options, so please refer to @ref{serial},
2520 for more details.
2521
2522 The commands @command{terminal_input} (@pxref{terminal_input}) and
2523 @command{terminal_output} (@pxref{terminal_output}) choose which type of
2524 terminal you want to use. In the case above, the terminal will be a
2525 serial terminal, but you can also pass @code{console} to the command,
2526 as @samp{terminal_input serial console}. In this case, a terminal in which
2527 you press any key will be selected as a GRUB terminal. In the example above,
2528 note that you need to put both commands on the same command line, as you
2529 will lose the ability to type commands on the console after the first
2530 command.
2531
2532 However, note that GRUB assumes that your terminal emulator is
2533 compatible with VT100 by default. This is true for most terminal
2534 emulators nowadays, but you should pass the option @option{--dumb} to
2535 the command if your terminal emulator is not VT100-compatible or
2536 implements few VT100 escape sequences. If you specify this option then
2537 GRUB provides you with an alternative menu interface, because the normal
2538 menu requires several fancy features of your terminal.
2539
2540
2541 @node Vendor power-on keys
2542 @chapter Using GRUB with vendor power-on keys
2543
2544 Some laptop vendors provide an additional power-on button which boots
2545 another OS.  GRUB supports such buttons with the @samp{GRUB_TIMEOUT_BUTTON},
2546 @samp{GRUB_TIMEOUT_STYLE_BUTTON}, @samp{GRUB_DEFAULT_BUTTON}, and
2547 @samp{GRUB_BUTTON_CMOS_ADDRESS} variables in default/grub (@pxref{Simple
2548 configuration}).  @samp{GRUB_TIMEOUT_BUTTON},
2549 @samp{GRUB_TIMEOUT_STYLE_BUTTON}, and @samp{GRUB_DEFAULT_BUTTON} are used
2550 instead of the corresponding variables without the @samp{_BUTTON} suffix
2551 when powered on using the special button.  @samp{GRUB_BUTTON_CMOS_ADDRESS}
2552 is vendor-specific and partially model-specific.  Values known to the GRUB
2553 team are:
2554
2555 @table @key
2556 @item Dell XPS M1330M
2557 121:3
2558 @item Dell XPS M1530
2559 85:3
2560 @item Dell Latitude E4300
2561 85:3
2562 @item Asus EeePC 1005PE 
2563 84:1 (unconfirmed)
2564 @item LENOVO ThinkPad T410s (2912W1C)
2565 101:3
2566 @end table
2567
2568 To take full advantage of this function, install GRUB into the MBR
2569 (@pxref{Installing GRUB using grub-install}).
2570
2571 If you have a laptop which has a similar feature and not in the above list
2572 could you figure your address and contribute?
2573 To discover the address do the following:
2574 @itemize
2575 @item boot normally
2576 @item
2577 @example
2578 sudo modprobe nvram
2579 sudo cat /dev/nvram | xxd > normal_button.txt
2580 @end example
2581 @item boot using vendor button
2582 @item
2583 @example
2584 sudo modprobe nvram
2585 sudo cat /dev/nvram | xxd > normal_vendor.txt
2586 @end example
2587 @end itemize
2588
2589 Then compare these text files and find where a bit was toggled. E.g. in
2590 case of Dell XPS it was:
2591 @example
2592 byte 0x47: 20 --> 28
2593 @end example
2594 It's a bit number 3 as seen from following table:
2595 @multitable @columnfractions .2 .2
2596 @item 0 @tab 01
2597 @item 1 @tab 02
2598 @item 2 @tab 04
2599 @item 3 @tab 08
2600 @item 4 @tab 10
2601 @item 5 @tab 20
2602 @item 6 @tab 40
2603 @item 7 @tab 80
2604 @end multitable
2605
2606 0x47 is decimal 71. Linux nvram implementation cuts first 14 bytes of
2607 CMOS. So the real byte address in CMOS is 71+14=85
2608 So complete address is 85:3
2609
2610 @node Images
2611 @chapter GRUB image files
2612
2613 @c FIXME: parts of this section are specific to PC BIOS right now.
2614
2615 GRUB consists of several images: a variety of bootstrap images for starting
2616 GRUB in various ways, a kernel image, and a set of modules which are
2617 combined with the kernel image to form a core image.  Here is a short
2618 overview of them.
2619
2620 @table @file
2621 @item boot.img
2622 On PC BIOS systems, this image is the first part of GRUB to start.  It is
2623 written to a master boot record (MBR) or to the boot sector of a partition.
2624 Because a PC boot sector is 512 bytes, the size of this image is exactly 512
2625 bytes.
2626
2627 The sole function of @file{boot.img} is to read the first sector of the core
2628 image from a local disk and jump to it.  Because of the size restriction,
2629 @file{boot.img} cannot understand any file system structure, so
2630 @command{grub-install} hardcodes the location of the first sector of the
2631 core image into @file{boot.img} when installing GRUB.
2632
2633 @item diskboot.img
2634 This image is used as the first sector of the core image when booting from a
2635 hard disk.  It reads the rest of the core image into memory and starts the
2636 kernel.  Since file system handling is not yet available, it encodes the
2637 location of the core image using a block list format.
2638
2639 @item cdboot.img
2640 This image is used as the first sector of the core image when booting from a
2641 CD-ROM drive.  It performs a similar function to @file{diskboot.img}.
2642
2643 @item pxeboot.img
2644 This image is used as the start of the core image when booting from the
2645 network using PXE.  @xref{Network}.
2646
2647 @item lnxboot.img
2648 This image may be placed at the start of the core image in order to make
2649 GRUB look enough like a Linux kernel that it can be booted by LILO using an
2650 @samp{image=} section.
2651
2652 @item kernel.img
2653 This image contains GRUB's basic run-time facilities: frameworks for device
2654 and file handling, environment variables, the rescue mode command-line
2655 parser, and so on.  It is rarely used directly, but is built into all core
2656 images.
2657
2658 @item core.img
2659 This is the core image of GRUB.  It is built dynamically from the kernel
2660 image and an arbitrary list of modules by the @command{grub-mkimage}
2661 program.  Usually, it contains enough modules to access @file{/boot/grub},
2662 and loads everything else (including menu handling, the ability to load
2663 target operating systems, and so on) from the file system at run-time.  The
2664 modular design allows the core image to be kept small, since the areas of
2665 disk where it must be installed are often as small as 32KB.
2666
2667 @xref{BIOS installation}, for details on where the core image can be
2668 installed on PC systems.
2669
2670 @item *.mod
2671 Everything else in GRUB resides in dynamically loadable modules.  These are
2672 often loaded automatically, or built into the core image if they are
2673 essential, but may also be loaded manually using the @command{insmod}
2674 command (@pxref{insmod}).
2675 @end table
2676
2677 @heading For GRUB Legacy users
2678
2679 GRUB 2 has a different design from GRUB Legacy, and so correspondences with
2680 the images it used cannot be exact.  Nevertheless, GRUB Legacy users often
2681 ask questions in the terms they are familiar with, and so here is a brief
2682 guide to how GRUB 2's images relate to that.
2683
2684 @table @file
2685 @item stage1
2686 Stage 1 from GRUB Legacy was very similar to @file{boot.img} in GRUB 2, and
2687 they serve the same function.
2688
2689 @item *_stage1_5
2690 In GRUB Legacy, Stage 1.5's function was to include enough filesystem code
2691 to allow the much larger Stage 2 to be read from an ordinary filesystem.  In
2692 this respect, its function was similar to @file{core.img} in GRUB 2.
2693 However, @file{core.img} is much more capable than Stage 1.5 was; since it
2694 offers a rescue shell, it is sometimes possible to recover manually in the
2695 event that it is unable to load any other modules, for example if partition
2696 numbers have changed.  @file{core.img} is built in a more flexible way,
2697 allowing GRUB 2 to support reading modules from advanced disk types such as
2698 LVM and RAID.
2699
2700 GRUB Legacy could run with only Stage 1 and Stage 2 in some limited
2701 configurations, while GRUB 2 requires @file{core.img} and cannot work
2702 without it.
2703
2704 @item stage2
2705 GRUB 2 has no single Stage 2 image.  Instead, it loads modules from
2706 @file{/boot/grub} at run-time.
2707
2708 @item stage2_eltorito
2709 In GRUB 2, images for booting from CD-ROM drives are now constructed using
2710 @file{cdboot.img} and @file{core.img}, making sure that the core image
2711 contains the @samp{iso9660} module.  It is usually best to use the
2712 @command{grub-mkrescue} program for this.
2713
2714 @item nbgrub
2715 There is as yet no equivalent for @file{nbgrub} in GRUB 2; it was used by
2716 Etherboot and some other network boot loaders.
2717
2718 @item pxegrub
2719 In GRUB 2, images for PXE network booting are now constructed using
2720 @file{pxeboot.img} and @file{core.img}, making sure that the core image
2721 contains the @samp{pxe} and @samp{pxecmd} modules.  @xref{Network}.
2722 @end table
2723
2724 @node Core image size limitation
2725 @chapter Core image size limitation
2726
2727 Heavily limited platforms:
2728 @itemize
2729 @item i386-pc (normal and PXE): the core image size (compressed) is limited by 458240 bytes.
2730  kernel.img (.text + .data + .bss, uncompressed) is limited by 392704 bytes.
2731  module size (uncompressed) + kernel.img (.text + .data, uncompressed) is limited by the size of contiguous chunk at 1M address.
2732 @item sparc64-ieee1275: kernel.img (.text + .data + .bss) + modules + 256K (stack) + 2M (heap) is limited by space available at 0x4400. On most platforms it's just 3 or 4M since ieee1275 maps only so much.
2733 @item i386-ieee1275: kernel.img  (.text + .data + .bss) + modules is limited by memory available at 0x10000, at most 596K
2734 @end itemize
2735
2736 Lightly limited platforms:
2737
2738 @itemize
2739 @item *-xen: limited only by adress space and RAM size.
2740 @item i386-qemu: kernel.img (.text + .data + .bss) is limited by 392704 bytes.
2741                  (core.img would be limited by ROM size but it's unlimited on qemu
2742 @item All EFI platforms: limited by contiguous RAM size and possibly firmware bugs
2743 @item Coreboot and multiboot. kernel.img (.text + .data + .bss) is limited by 392704 bytes.
2744       module size is limited by the size of contiguous chunk at 1M address.
2745 @item mipsel-loongson (ELF), mips(el)-qemu_mips (ELF): if uncompressed:
2746                 kernel.img (.text + .data) + modules is limited by the space from 80200000 forward
2747                 if compressed:
2748                 kernel.img (.text + .data, uncompressed) + modules (uncompressed)
2749                 + (modules + kernel.img (.text + .data)) (compressed)
2750                 + decompressor is limited by the space from 80200000 forward
2751 @item mipsel-loongson (Flash), mips(el)-qemu_mips (Flash): kernel.img (.text + .data) + modules is limited by the space from 80200000 forward
2752                                core.img (final) is limited by flash size (512K on yeeloong and fulooong)
2753 @item mips-arc: if uncompressed:
2754                 kernel.img (.text + .data) is limited by the space from 8bd00000 forward
2755                 modules + dummy decompressor  is limited by the space from 8bd00000 backward
2756                 if compressed:
2757                 kernel.img (.text + .data, uncompressed) is limited by the space from 8bd00000 forward
2758                 modules (uncompressed) + (modules + kernel.img (.text + .data)) (compressed, aligned to 1M)
2759                 + 1M (decompressor + scratch space) is limited by the space from 8bd00000 backward
2760 @item powerpc-ieee1275: kernel.img (.text + .data + .bss) + modules is limited by space available at 0x200000
2761 @end itemize
2762
2763 @node Filesystem
2764 @chapter Filesystem syntax and semantics
2765
2766 GRUB uses a special syntax for specifying disk drives which can be
2767 accessed by BIOS. Because of BIOS limitations, GRUB cannot distinguish
2768 between IDE, ESDI, SCSI, or others. You must know yourself which BIOS
2769 device is equivalent to which OS device. Normally, that will be clear if
2770 you see the files in a device or use the command @command{search}
2771 (@pxref{search}).
2772
2773 @menu
2774 * Device syntax::               How to specify devices
2775 * File name syntax::            How to specify files
2776 * Block list syntax::           How to specify block lists
2777 @end menu
2778
2779
2780 @node Device syntax
2781 @section How to specify devices
2782
2783 The device syntax is like this:
2784
2785 @example
2786 @code{(@var{device}[,@var{partmap-name1}@var{part-num1}[,@var{partmap-name2}@var{part-num2}[,...]]])}
2787 @end example
2788
2789 @samp{[]} means the parameter is optional. @var{device} depends on the disk
2790 driver in use. BIOS and EFI disks use either @samp{fd} or @samp{hd} followed
2791 by a digit, like @samp{fd0}, or @samp{cd}.
2792 AHCI, PATA (ata), crypto, USB use the name of driver followed by a number.
2793 Memdisk and host are limited to one disk and so it's refered just by driver
2794 name.
2795 RAID (md), ofdisk (ieee1275 and nand), LVM (lvm), LDM, virtio (vdsk)
2796 and arcdisk (arc) use intrinsic name of disk prefixed by driver name.
2797 Additionally just ``nand'' refers to the disk aliased as ``nand''.
2798 Conflicts are solved by suffixing a number if necessarry.
2799 Commas need to be escaped.
2800 Loopback uses whatever name specified to @command{loopback} command.
2801 Hostdisk uses names specified in device.map as long as it's of the form
2802 [fhc]d[0-9]* or hostdisk/<OS DEVICE>.
2803 For crypto and RAID (md) additionally you can use the syntax
2804 <driver name>uuid/<uuid>.  For LVM additionally you can use the syntax
2805 lvmid/<volume-group-uuid>/<volume-uuid>.
2806
2807 @example
2808 (fd0)
2809 (hd0)
2810 (cd)
2811 (ahci0)
2812 (ata0)
2813 (crypto0)
2814 (usb0)
2815 (cryptouuid/123456789abcdef0123456789abcdef0)
2816 (mduuid/123456789abcdef0123456789abcdef0)
2817 (lvm/system-root)
2818 (lvmid/F1ikgD-2RES-306G-il9M-7iwa-4NKW-EbV1NV/eLGuCQ-L4Ka-XUgR-sjtJ-ffch-bajr-fCNfz5)
2819 (md/myraid)
2820 (md/0)
2821 (ieee1275/disk2)
2822 (ieee1275//pci@@1f\,0/ide@@d/disk@@2)
2823 (nand)
2824 (memdisk)
2825 (host)
2826 (myloop)
2827 (hostdisk//dev/sda)
2828 @end example
2829
2830 @var{part-num} represents the partition number of @var{device}, starting
2831 from one. @var{partname} is optional but is recommended since disk may have
2832 several top-level partmaps. Specifying third and later component you can access
2833 to subpartitions.
2834
2835 The syntax @samp{(hd0)} represents using the entire disk (or the
2836 MBR when installing GRUB), while the syntax @samp{(hd0,1)}
2837 represents using the first partition of the disk (or the boot sector
2838 of the partition when installing GRUB).
2839
2840 @example
2841 (hd0,msdos1)
2842 (hd0,msdos1,msdos5)
2843 (hd0,msdos1,bsd3)
2844 (hd0,netbsd1)
2845 (hd0,gpt1)
2846 (hd0,1,3)
2847 @end example
2848
2849 If you enabled the network support, the special drives
2850 @code{(@var{protocol}[,@var{server}])} are also available. Supported protocols
2851 are @samp{http} and @samp{tftp}. If @var{server} is omitted, value of
2852 environment variable @samp{net_default_server} is used.
2853 Before using the network drive, you must initialize the network.
2854 @xref{Network}, for more information.
2855
2856 If you boot GRUB from a CD-ROM, @samp{(cd)} is available. @xref{Making
2857 a GRUB bootable CD-ROM}, for details.
2858
2859
2860 @node File name syntax
2861 @section How to specify files
2862
2863 There are two ways to specify files, by @dfn{absolute file name} and by
2864 @dfn{block list}.
2865
2866 An absolute file name resembles a Unix absolute file name, using
2867 @samp{/} for the directory separator (not @samp{\} as in DOS). One
2868 example is @samp{(hd0,1)/boot/grub/grub.cfg}. This means the file
2869 @file{/boot/grub/grub.cfg} in the first partition of the first hard
2870 disk. If you omit the device name in an absolute file name, GRUB uses
2871 GRUB's @dfn{root device} implicitly. So if you set the root device to,
2872 say, @samp{(hd1,1)} by the command @samp{set root=(hd1,1)} (@pxref{set}),
2873 then @code{/boot/kernel} is the same as @code{(hd1,1)/boot/kernel}.
2874
2875 On ZFS filesystem the first path component must be
2876 @var{volume}@samp{@@}[@var{snapshot}].
2877 So @samp{/rootvol@@snap-129/boot/grub/grub.cfg} refers to file
2878 @samp{/boot/grub/grub.cfg} in snapshot of volume @samp{rootvol} with name
2879 @samp{snap-129}.  Trailing @samp{@@} after volume name is mandatory even if
2880 snapshot name is omitted.
2881
2882
2883 @node Block list syntax
2884 @section How to specify block lists
2885
2886 A block list is used for specifying a file that doesn't appear in the
2887 filesystem, like a chainloader. The syntax is
2888 @code{[@var{offset}]+@var{length}[,[@var{offset}]+@var{length}]@dots{}}.
2889 Here is an example:
2890
2891 @example
2892 @code{0+100,200+1,300+300}
2893 @end example
2894
2895 This represents that GRUB should read blocks 0 through 99, block 200,
2896 and blocks 300 through 599. If you omit an offset, then GRUB assumes
2897 the offset is zero.
2898
2899 Like the file name syntax (@pxref{File name syntax}), if a blocklist
2900 does not contain a device name, then GRUB uses GRUB's @dfn{root
2901 device}. So @code{(hd0,2)+1} is the same as @code{+1} when the root
2902 device is @samp{(hd0,2)}.
2903
2904
2905 @node Interface
2906 @chapter GRUB's user interface
2907
2908 GRUB has both a simple menu interface for choosing preset entries from a
2909 configuration file, and a highly flexible command-line for performing
2910 any desired combination of boot commands.
2911
2912 GRUB looks for its configuration file as soon as it is loaded. If one
2913 is found, then the full menu interface is activated using whatever
2914 entries were found in the file. If you choose the @dfn{command-line} menu
2915 option, or if the configuration file was not found, then GRUB drops to
2916 the command-line interface.
2917
2918 @menu
2919 * Command-line interface::      The flexible command-line interface
2920 * Menu interface::              The simple menu interface
2921 * Menu entry editor::           Editing a menu entry
2922 @end menu
2923
2924
2925 @node Command-line interface
2926 @section The flexible command-line interface
2927
2928 The command-line interface provides a prompt and after it an editable
2929 text area much like a command-line in Unix or DOS. Each command is
2930 immediately executed after it is entered@footnote{However, this
2931 behavior will be changed in the future version, in a user-invisible
2932 way.}. The commands (@pxref{Command-line and menu entry commands}) are a
2933 subset of those available in the configuration file, used with exactly
2934 the same syntax.
2935
2936 Cursor movement and editing of the text on the line can be done via a
2937 subset of the functions available in the Bash shell:
2938
2939 @table @key
2940 @item C-f
2941 @itemx PC right key
2942 Move forward one character.
2943
2944 @item C-b
2945 @itemx PC left key
2946 Move back one character.
2947
2948 @item C-a
2949 @itemx HOME
2950 Move to the start of the line.
2951
2952 @item C-e
2953 @itemx END
2954 Move the the end of the line.
2955
2956 @item C-d
2957 @itemx DEL
2958 Delete the character underneath the cursor.
2959
2960 @item C-h
2961 @itemx BS
2962 Delete the character to the left of the cursor.
2963
2964 @item C-k
2965 Kill the text from the current cursor position to the end of the line.
2966
2967 @item C-u
2968 Kill backward from the cursor to the beginning of the line.
2969
2970 @item C-y
2971 Yank the killed text back into the buffer at the cursor.
2972
2973 @item C-p
2974 @itemx PC up key
2975 Move up through the history list.
2976
2977 @item C-n
2978 @itemx PC down key
2979 Move down through the history list.
2980 @end table
2981
2982 When typing commands interactively, if the cursor is within or before
2983 the first word in the command-line, pressing the @key{TAB} key (or
2984 @key{C-i}) will display a listing of the available commands, and if the
2985 cursor is after the first word, the @kbd{@key{TAB}} will provide a
2986 completion listing of disks, partitions, and file names depending on the
2987 context. Note that to obtain a list of drives, one must open a
2988 parenthesis, as @command{root (}.
2989
2990 Note that you cannot use the completion functionality in the TFTP
2991 filesystem. This is because TFTP doesn't support file name listing for
2992 the security.
2993
2994
2995 @node Menu interface
2996 @section The simple menu interface
2997
2998 The menu interface is quite easy to use. Its commands are both
2999 reasonably intuitive and described on screen.
3000
3001 Basically, the menu interface provides a list of @dfn{boot entries} to
3002 the user to choose from. Use the arrow keys to select the entry of
3003 choice, then press @key{RET} to run it.  An optional timeout is
3004 available to boot the default entry (the first one if not set), which is
3005 aborted by pressing any key.
3006
3007 Commands are available to enter a bare command-line by pressing @key{c}
3008 (which operates exactly like the non-config-file version of GRUB, but
3009 allows one to return to the menu if desired by pressing @key{ESC}) or to
3010 edit any of the @dfn{boot entries} by pressing @key{e}.
3011
3012 If you protect the menu interface with a password (@pxref{Security}),
3013 all you can do is choose an entry by pressing @key{RET}, or press
3014 @key{p} to enter the password.
3015
3016
3017 @node Menu entry editor
3018 @section Editing a menu entry
3019
3020 The menu entry editor looks much like the main menu interface, but the
3021 lines in the menu are individual commands in the selected entry instead
3022 of entry names.
3023
3024 If an @key{ESC} is pressed in the editor, it aborts all the changes made
3025 to the configuration entry and returns to the main menu interface.
3026
3027 Each line in the menu entry can be edited freely, and you can add new lines
3028 by pressing @key{RET} at the end of a line.  To boot the edited entry, press
3029 @key{Ctrl-x}.
3030
3031 Although GRUB unfortunately does not support @dfn{undo}, you can do almost
3032 the same thing by just returning to the main menu using @key{ESC}.
3033
3034
3035 @node Environment
3036 @chapter GRUB environment variables
3037
3038 GRUB supports environment variables which are rather like those offered by
3039 all Unix-like systems.  Environment variables have a name, which is unique
3040 and is usually a short identifier, and a value, which is an arbitrary string
3041 of characters.  They may be set (@pxref{set}), unset (@pxref{unset}), or
3042 looked up (@pxref{Shell-like scripting}) by name.
3043
3044 A number of environment variables have special meanings to various parts of
3045 GRUB.  Others may be used freely in GRUB configuration files.
3046
3047
3048 @menu
3049 * Special environment variables::
3050 * Environment block::
3051 @end menu
3052
3053
3054 @node Special environment variables
3055 @section Special environment variables
3056
3057 These variables have special meaning to GRUB.
3058
3059 @menu
3060 * biosnum::
3061 * check_signatures::
3062 * chosen::
3063 * cmdpath::
3064 * color_highlight::
3065 * color_normal::
3066 * config_directory::
3067 * config_file::
3068 * debug::
3069 * default::
3070 * fallback::
3071 * gfxmode::
3072 * gfxpayload::
3073 * gfxterm_font::
3074 * grub_cpu::
3075 * grub_platform::
3076 * icondir::
3077 * lang::
3078 * locale_dir::
3079 * menu_color_highlight::
3080 * menu_color_normal::
3081 * net_@var{<interface>}_boot_file::
3082 * net_@var{<interface>}_dhcp_server_name::
3083 * net_@var{<interface>}_domain::
3084 * net_@var{<interface>}_extensionspath::
3085 * net_@var{<interface>}_hostname::
3086 * net_@var{<interface>}_ip::
3087 * net_@var{<interface>}_mac::
3088 * net_@var{<interface>}_next_server::
3089 * net_@var{<interface>}_rootpath::
3090 * net_default_interface::
3091 * net_default_ip::
3092 * net_default_mac::
3093 * net_default_server::
3094 * pager::
3095 * prefix::
3096 * pxe_blksize::
3097 * pxe_default_gateway::
3098 * pxe_default_server::
3099 * root::
3100 * superusers::
3101 * theme::
3102 * timeout::
3103 * timeout_style::
3104 @end menu
3105
3106
3107 @node biosnum
3108 @subsection biosnum
3109
3110 When chain-loading another boot loader (@pxref{Chain-loading}), GRUB may
3111 need to know what BIOS drive number corresponds to the root device
3112 (@pxref{root}) so that it can set up registers properly.  If the
3113 @var{biosnum} variable is set, it overrides GRUB's own means of guessing
3114 this.
3115
3116 For an alternative approach which also changes BIOS drive mappings for the
3117 chain-loaded system, @pxref{drivemap}.
3118
3119
3120 @node check_signatures
3121 @subsection check_signatures
3122
3123 This variable controls whether GRUB enforces digital signature
3124 validation on loaded files. @xref{Using digital signatures}.
3125
3126 @node chosen
3127 @subsection chosen
3128
3129 When executing a menu entry, GRUB sets the @var{chosen} variable to the
3130 title of the entry being executed.
3131
3132 If the menu entry is in one or more submenus, then @var{chosen} is set to
3133 the titles of each of the submenus starting from the top level followed by
3134 the title of the menu entry itself, separated by @samp{>}.
3135
3136
3137 @node cmdpath
3138 @subsection cmdpath
3139
3140 The location from which @file{core.img} was loaded as an absolute
3141 directory name (@pxref{File name syntax}).  This is set by GRUB at
3142 startup based on information returned by platform firmware.  Not every
3143 platform provides this information and some may return only device
3144 without path name.
3145
3146
3147 @node color_highlight
3148 @subsection color_highlight
3149
3150 This variable contains the ``highlight'' foreground and background terminal
3151 colors, separated by a slash (@samp{/}).  Setting this variable changes
3152 those colors.  For the available color names, @pxref{color_normal}.
3153
3154 The default is @samp{black/light-gray}.
3155
3156
3157 @node color_normal
3158 @subsection color_normal
3159
3160 This variable contains the ``normal'' foreground and background terminal
3161 colors, separated by a slash (@samp{/}).  Setting this variable changes
3162 those colors.  Each color must be a name from the following list:
3163
3164 @itemize @bullet
3165 @item black
3166 @item blue
3167 @item green
3168 @item cyan
3169 @item red
3170 @item magenta
3171 @item brown
3172 @item light-gray
3173 @item dark-gray
3174 @item light-blue
3175 @item light-green
3176 @item light-cyan
3177 @item light-red
3178 @item light-magenta
3179 @item yellow
3180 @item white
3181 @end itemize
3182
3183 The default is @samp{light-gray/black}.
3184
3185 The color support support varies from terminal to terminal.
3186
3187 @samp{morse} has no color support at all.
3188
3189 @samp{mda_text} color support is limited to highlighting by
3190 black/white reversal.
3191
3192 @samp{console} on ARC, EMU and IEEE1275, @samp{serial_*} and
3193 @samp{spkmodem} are governed by terminfo and support
3194 only 8 colors if in modes @samp{vt100-color} (default for console on emu),
3195 @samp{arc} (default for console on ARC), @samp{ieee1275} (default
3196 for console on IEEE1275). When in mode @samp{vt100}
3197 then the color support is limited to highlighting by black/white
3198 reversal. When in mode @samp{dumb} there is no color support.
3199
3200 When console supports no colors this setting is ignored.
3201 When console supports 8 colors, then the colors from the
3202 second half of the previous list are mapped to the
3203 matching colors of first half.
3204
3205 @samp{console} on EFI and BIOS and @samp{vga_text} support all 16 colors.
3206
3207 @samp{gfxterm} supports all 16 colors and would be theoretically extendable
3208 to support whole rgb24 palette but currently there is no compelling reason
3209 to go beyond the current 16 colors.
3210
3211
3212 @node config_directory
3213 @subsection config_directory
3214
3215 This variable is automatically set by GRUB to the directory part of
3216 current configuration file name (@pxref{config_file}).
3217
3218
3219 @node config_file
3220 @subsection config_file
3221
3222 This variable is automatically set by GRUB to the name of configuration file that is being
3223 processed by commands @command{configfile} (@pxref{configfile}) or @command{normal}
3224 (@pxref{normal}).  It is restored to the previous value when command completes.
3225
3226
3227 @node debug
3228 @subsection debug
3229
3230 This variable may be set to enable debugging output from various components
3231 of GRUB.  The value is a list of debug facility names separated by
3232 whitespace or @samp{,}, or @samp{all} to enable all available debugging
3233 output. The facility names are the first argument to grub_dprintf. Consult
3234 source for more details.
3235
3236
3237 @node default
3238 @subsection default
3239
3240 If this variable is set, it identifies a menu entry that should be
3241 selected by default, possibly after a timeout (@pxref{timeout}).  The
3242 entry may be identified by number (starting from 0 at each level of
3243 the hierarchy), by title, or by id.
3244
3245 For example, if you have:
3246
3247 @verbatim
3248 menuentry 'Example GNU/Linux distribution' --class gnu-linux --id example-gnu-linux {
3249         ...
3250 }
3251 @end verbatim
3252
3253 then you can make this the default using:
3254
3255 @example
3256 default=example-gnu-linux
3257 @end example
3258
3259 If the entry is in a submenu, then it must be identified using the
3260 number, title, or id of each of the submenus starting from the top
3261 level, followed by the number, title, or id of the menu entry itself,
3262 with each element separated by @samp{>}.  For example, take the
3263 following menu structure:
3264
3265 @example
3266 GNU/Hurd --id gnu-hurd
3267   Standard Boot --id=gnu-hurd-std
3268   Rescue shell --id=gnu-hurd-rescue
3269 Other platforms --id=other
3270   Minix --id=minix
3271     Version 3.4.0 --id=minix-3.4.0
3272     Version 3.3.0 --id=minix-3.3.0
3273   GRUB Invaders --id=grub-invaders
3274 @end example
3275
3276 The more recent release of Minix would then be identified as
3277 @samp{Other platforms>Minix>Version 3.4.0}, or as @samp{1>0>0}, or as
3278 @samp{other>minix>minix-3.4.0}.
3279
3280 This variable is often set by @samp{GRUB_DEFAULT} (@pxref{Simple
3281 configuration}), @command{grub-set-default}, or @command{grub-reboot}.
3282
3283
3284 @node fallback
3285 @subsection fallback
3286
3287 If this variable is set, it identifies a menu entry that should be selected
3288 if the default menu entry fails to boot.  Entries are identified in the same
3289 way as for @samp{default} (@pxref{default}).
3290
3291
3292 @node gfxmode
3293 @subsection gfxmode
3294
3295 If this variable is set, it sets the resolution used on the @samp{gfxterm}
3296 graphical terminal.  Note that you can only use modes which your graphics
3297 card supports via VESA BIOS Extensions (VBE), so for example native LCD
3298 panel resolutions may not be available.  The default is @samp{auto}, which
3299 selects a platform-specific default that should look reasonable. Supported
3300 modes can be listed by @samp{videoinfo} command in GRUB.
3301
3302 The resolution may be specified as a sequence of one or more modes,
3303 separated by commas (@samp{,}) or semicolons (@samp{;}); each will be tried
3304 in turn until one is found.  Each mode should be either @samp{auto},
3305 @samp{@var{width}x@var{height}}, or
3306 @samp{@var{width}x@var{height}x@var{depth}}.
3307
3308
3309 @node gfxpayload
3310 @subsection gfxpayload
3311
3312 If this variable is set, it controls the video mode in which the Linux
3313 kernel starts up, replacing the @samp{vga=} boot option (@pxref{linux}).  It
3314 may be set to @samp{text} to force the Linux kernel to boot in normal text
3315 mode, @samp{keep} to preserve the graphics mode set using @samp{gfxmode}, or
3316 any of the permitted values for @samp{gfxmode} to set a particular graphics
3317 mode (@pxref{gfxmode}).
3318
3319 Depending on your kernel, your distribution, your graphics card, and the
3320 phase of the moon, note that using this option may cause GNU/Linux to suffer
3321 from various display problems, particularly during the early part of the
3322 boot sequence.  If you have problems, set this variable to @samp{text} and
3323 GRUB will tell Linux to boot in normal text mode.
3324
3325 The default is platform-specific.  On platforms with a native text mode
3326 (such as PC BIOS platforms), the default is @samp{text}.  Otherwise the
3327 default may be @samp{auto} or a specific video mode.
3328
3329 This variable is often set by @samp{GRUB_GFXPAYLOAD_LINUX} (@pxref{Simple
3330 configuration}).
3331
3332
3333 @node gfxterm_font
3334 @subsection gfxterm_font
3335
3336 If this variable is set, it names a font to use for text on the
3337 @samp{gfxterm} graphical terminal.  Otherwise, @samp{gfxterm} may use any
3338 available font.
3339
3340
3341 @node grub_cpu
3342 @subsection grub_cpu
3343
3344 In normal mode (@pxref{normal}), GRUB sets the @samp{grub_cpu} variable to
3345 the CPU type for which GRUB was built (e.g. @samp{i386} or @samp{powerpc}).
3346
3347
3348 @node grub_platform
3349 @subsection grub_platform
3350
3351 In normal mode (@pxref{normal}), GRUB sets the @samp{grub_platform} variable
3352 to the platform for which GRUB was built (e.g. @samp{pc} or @samp{efi}).
3353
3354
3355 @node icondir
3356 @subsection icondir
3357
3358 If this variable is set, it names a directory in which the GRUB graphical
3359 menu should look for icons after looking in the theme's @samp{icons}
3360 directory.  @xref{Theme file format}.
3361
3362
3363 @node lang
3364 @subsection lang
3365
3366 If this variable is set, it names the language code that the
3367 @command{gettext} command (@pxref{gettext}) uses to translate strings.  For
3368 example, French would be named as @samp{fr}, and Simplified Chinese as
3369 @samp{zh_CN}.
3370
3371 @command{grub-mkconfig} (@pxref{Simple configuration}) will try to set a
3372 reasonable default for this variable based on the system locale.
3373
3374
3375 @node locale_dir
3376 @subsection locale_dir
3377
3378 If this variable is set, it names the directory where translation files may
3379 be found (@pxref{gettext}), usually @file{/boot/grub/locale}.  Otherwise,
3380 internationalization is disabled.
3381
3382 @command{grub-mkconfig} (@pxref{Simple configuration}) will set a reasonable
3383 default for this variable if internationalization is needed and any
3384 translation files are available.
3385
3386
3387 @node menu_color_highlight
3388 @subsection menu_color_highlight
3389
3390 This variable contains the foreground and background colors to be used for
3391 the highlighted menu entry, separated by a slash (@samp{/}).  Setting this
3392 variable changes those colors.  For the available color names,
3393 @pxref{color_normal}.
3394
3395 The default is the value of @samp{color_highlight}
3396 (@pxref{color_highlight}).
3397
3398
3399 @node menu_color_normal
3400 @subsection menu_color_normal
3401
3402 This variable contains the foreground and background colors to be used for
3403 non-highlighted menu entries, separated by a slash (@samp{/}).  Setting this
3404 variable changes those colors.  For the available color names,
3405 @pxref{color_normal}.
3406
3407 The default is the value of @samp{color_normal} (@pxref{color_normal}).
3408
3409
3410 @node net_@var{<interface>}_boot_file
3411 @subsection net_@var{<interface>}_boot_file
3412
3413 @xref{Network}.
3414
3415
3416 @node net_@var{<interface>}_dhcp_server_name
3417 @subsection net_@var{<interface>}_dhcp_server_name
3418
3419 @xref{Network}.
3420
3421
3422 @node net_@var{<interface>}_domain
3423 @subsection net_@var{<interface>}_domain
3424
3425 @xref{Network}.
3426
3427
3428 @node net_@var{<interface>}_extensionspath
3429 @subsection net_@var{<interface>}_extensionspath
3430
3431 @xref{Network}.
3432
3433
3434 @node net_@var{<interface>}_hostname
3435 @subsection net_@var{<interface>}_hostname
3436
3437 @xref{Network}.
3438
3439
3440 @node net_@var{<interface>}_ip
3441 @subsection net_@var{<interface>}_ip
3442
3443 @xref{Network}.
3444
3445
3446 @node net_@var{<interface>}_mac
3447 @subsection net_@var{<interface>}_mac
3448
3449 @xref{Network}.
3450
3451
3452 @node net_@var{<interface>}_next_server
3453 @subsection net_@var{<interface>}_next_server
3454
3455 @xref{Network}.
3456
3457
3458 @node net_@var{<interface>}_rootpath
3459 @subsection net_@var{<interface>}_rootpath
3460
3461 @xref{Network}.
3462
3463
3464 @node net_default_interface
3465 @subsection net_default_interface
3466
3467 @xref{Network}.
3468
3469
3470 @node net_default_ip
3471 @subsection net_default_ip
3472
3473 @xref{Network}.
3474
3475
3476 @node net_default_mac
3477 @subsection net_default_mac
3478
3479 @xref{Network}.
3480
3481
3482 @node net_default_server
3483 @subsection net_default_server
3484
3485 @xref{Network}.
3486
3487
3488 @node pager
3489 @subsection pager
3490
3491 If set to @samp{1}, pause output after each screenful and wait for keyboard
3492 input.  The default is not to pause output.
3493
3494
3495 @node prefix
3496 @subsection prefix
3497
3498 The location of the @samp{/boot/grub} directory as an absolute file name
3499 (@pxref{File name syntax}).  This is normally set by GRUB at startup based
3500 on information provided by @command{grub-install}.  GRUB modules are
3501 dynamically loaded from this directory, so it must be set correctly in order
3502 for many parts of GRUB to work.
3503
3504
3505 @node pxe_blksize
3506 @subsection pxe_blksize
3507
3508 @xref{Network}.
3509
3510
3511 @node pxe_default_gateway
3512 @subsection pxe_default_gateway
3513
3514 @xref{Network}.
3515
3516
3517 @node pxe_default_server
3518 @subsection pxe_default_server
3519
3520 @xref{Network}.
3521
3522
3523 @node root
3524 @subsection root
3525
3526 The root device name (@pxref{Device syntax}).  Any file names that do not
3527 specify an explicit device name are read from this device.  The default is
3528 normally set by GRUB at startup based on the value of @samp{prefix}
3529 (@pxref{prefix}).
3530
3531 For example, if GRUB was installed to the first partition of the first hard
3532 disk, then @samp{prefix} might be set to @samp{(hd0,msdos1)/boot/grub} and
3533 @samp{root} to @samp{hd0,msdos1}.
3534
3535
3536 @node superusers
3537 @subsection superusers
3538
3539 This variable may be set to a list of superuser names to enable
3540 authentication support.  @xref{Security}.
3541
3542
3543 @node theme
3544 @subsection theme
3545
3546 This variable may be set to a directory containing a GRUB graphical menu
3547 theme.  @xref{Theme file format}.
3548
3549 This variable is often set by @samp{GRUB_THEME} (@pxref{Simple
3550 configuration}).
3551
3552
3553 @node timeout
3554 @subsection timeout
3555
3556 If this variable is set, it specifies the time in seconds to wait for
3557 keyboard input before booting the default menu entry.  A timeout of @samp{0}
3558 means to boot the default entry immediately without displaying the menu; a
3559 timeout of @samp{-1} (or unset) means to wait indefinitely.
3560
3561 If @samp{timeout_style} (@pxref{timeout_style}) is set to @samp{countdown}
3562 or @samp{hidden}, the timeout is instead counted before the menu is
3563 displayed.
3564
3565 This variable is often set by @samp{GRUB_TIMEOUT} (@pxref{Simple
3566 configuration}).
3567
3568
3569 @node timeout_style
3570 @subsection timeout_style
3571
3572 This variable may be set to @samp{menu}, @samp{countdown}, or @samp{hidden}
3573 to control the way in which the timeout (@pxref{timeout}) interacts with
3574 displaying the menu.  See the documentation of @samp{GRUB_TIMEOUT_STYLE}
3575 (@pxref{Simple configuration}) for details.
3576
3577
3578 @node Environment block
3579 @section The GRUB environment block
3580
3581 It is often useful to be able to remember a small amount of information from
3582 one boot to the next.  For example, you might want to set the default menu
3583 entry based on what was selected the last time.  GRUB deliberately does not
3584 implement support for writing files in order to minimise the possibility of
3585 the boot loader being responsible for file system corruption, so a GRUB
3586 configuration file cannot just create a file in the ordinary way.  However,
3587 GRUB provides an ``environment block'' which can be used to save a small
3588 amount of state.
3589
3590 The environment block is a preallocated 1024-byte file, which normally lives
3591 in @file{/boot/grub/grubenv} (although you should not assume this).  At boot
3592 time, the @command{load_env} command (@pxref{load_env}) loads environment
3593 variables from it, and the @command{save_env} (@pxref{save_env}) command
3594 saves environment variables to it.  From a running system, the
3595 @command{grub-editenv} utility can be used to edit the environment block.
3596
3597 For safety reasons, this storage is only available when installed on a plain
3598 disk (no LVM or RAID), using a non-checksumming filesystem (no ZFS), and
3599 using BIOS or EFI functions (no ATA, USB or IEEE1275).
3600
3601 @command{grub-mkconfig} uses this facility to implement
3602 @samp{GRUB_SAVEDEFAULT} (@pxref{Simple configuration}).
3603
3604
3605 @node Commands
3606 @chapter The list of available commands
3607
3608 In this chapter, we list all commands that are available in GRUB.
3609
3610 Commands belong to different groups. A few can only be used in
3611 the global section of the configuration file (or ``menu''); most
3612 of them can be entered on the command-line and can be used either
3613 anywhere in the menu or specifically in the menu entries.
3614
3615 In rescue mode, only the @command{insmod} (@pxref{insmod}), @command{ls}
3616 (@pxref{ls}), @command{set} (@pxref{set}), and @command{unset}
3617 (@pxref{unset}) commands are normally available.  If you end up in rescue
3618 mode and do not know what to do, then @pxref{GRUB only offers a rescue
3619 shell}.
3620
3621 @menu
3622 * Menu-specific commands::
3623 * General commands::
3624 * Command-line and menu entry commands::
3625 * Networking commands::
3626 @end menu
3627
3628
3629 @node Menu-specific commands
3630 @section The list of commands for the menu only
3631
3632 The semantics used in parsing the configuration file are the following:
3633
3634 @itemize @bullet
3635 @item
3636 The files @emph{must} be in plain-text format.
3637
3638 @item
3639 @samp{#} at the beginning of a line in a configuration file means it is
3640 only a comment.
3641
3642 @item
3643 Options are separated by spaces.
3644
3645 @item
3646 All numbers can be either decimal or hexadecimal. A hexadecimal number
3647 must be preceded by @samp{0x}, and is case-insensitive.
3648 @end itemize
3649
3650 These commands can only be used in the menu:
3651
3652 @menu
3653 * menuentry::                   Start a menu entry
3654 * submenu::                     Group menu entries
3655 @end menu
3656
3657
3658 @node menuentry
3659 @subsection menuentry
3660
3661 @deffn Command menuentry @var{title} @
3662  [@option{--class=class} @dots{}] [@option{--users=users}] @
3663  [@option{--unrestricted}] [@option{--hotkey=key}] [@option{--id=id}] @
3664  [@var{arg} @dots{}] @{ @var{command}; @dots{} @}
3665 This defines a GRUB menu entry named @var{title}.  When this entry is
3666 selected from the menu, GRUB will set the @var{chosen} environment variable
3667 to value of @option{--id} if @option{--id} is given, execute the list of
3668 commands given within braces, and if the last command in the list returned
3669 successfully and a kernel was loaded it will execute the @command{boot} command.
3670
3671 The @option{--class} option may be used any number of times to group menu
3672 entries into classes.  Menu themes may display different classes using
3673 different styles.
3674
3675 The @option{--users} option grants specific users access to specific menu
3676 entries.  @xref{Security}.
3677
3678 The @option{--unrestricted} option grants all users access to specific menu
3679 entries.  @xref{Security}.
3680
3681 The @option{--hotkey} option associates a hotkey with a menu entry.
3682 @var{key} may be a single letter, or one of the aliases @samp{backspace},
3683 @samp{tab}, or @samp{delete}.
3684
3685 The @option{--id} may be used to associate unique identifier with a menu entry.
3686 @var{id} is string of ASCII aphanumeric characters, underscore and hyphen
3687 and should not start with a digit.
3688
3689 All other arguments including @var{title} are passed as positional parameters
3690 when list of commands is executed with @var{title} always assigned to @code{$1}.
3691 @end deffn
3692
3693
3694 @node submenu
3695 @subsection submenu
3696
3697 @deffn Command submenu @var{title} @
3698  [@option{--class=class} @dots{}] [@option{--users=users}] @
3699  [@option{--unrestricted}] [@option{--hotkey=key}] [@option{--id=id}] @
3700  @{ @var{menu entries} @dots{} @}
3701 This defines a submenu.  An entry called @var{title} will be added to the
3702 menu; when that entry is selected, a new menu will be displayed showing all
3703 the entries within this submenu.
3704
3705 All options are the same as in the @command{menuentry} command
3706 (@pxref{menuentry}).
3707 @end deffn
3708
3709
3710 @node General commands
3711 @section The list of general commands
3712
3713 Commands usable anywhere in the menu and in the command-line.
3714
3715 @menu
3716 * serial::                      Set up a serial device
3717 * terminal_input::              Manage input terminals
3718 * terminal_output::             Manage output terminals
3719 * terminfo::                    Define terminal type
3720 @end menu
3721
3722
3723 @node serial
3724 @subsection serial
3725
3726 @deffn Command serial [@option{--unit=unit}] [@option{--port=port}] [@option{--speed=speed}] [@option{--word=word}] [@option{--parity=parity}] [@option{--stop=stop}]
3727 Initialize a serial device. @var{unit} is a number in the range 0-3
3728 specifying which serial port to use; default is 0, which corresponds to
3729 the port often called COM1. @var{port} is the I/O port where the UART
3730 is to be found; if specified it takes precedence over @var{unit}.
3731 @var{speed} is the transmission speed; default is 9600. @var{word} and
3732 @var{stop} are the number of data bits and stop bits. Data bits must
3733 be in the range 5-8 and stop bits must be 1 or 2. Default is 8 data
3734 bits and one stop bit. @var{parity} is one of @samp{no}, @samp{odd},
3735 @samp{even} and defaults to @samp{no}.
3736
3737 The serial port is not used as a communication channel unless the
3738 @command{terminal_input} or @command{terminal_output} command is used
3739 (@pxref{terminal_input}, @pxref{terminal_output}).
3740
3741 See also @ref{Serial terminal}.
3742 @end deffn
3743
3744
3745 @node terminal_input
3746 @subsection terminal_input
3747
3748 @deffn Command terminal_input [@option{--append}|@option{--remove}] @
3749  [terminal1] [terminal2] @dots{}
3750 List or select an input terminal.
3751
3752 With no arguments, list the active and available input terminals.
3753
3754 With @option{--append}, add the named terminals to the list of active input
3755 terminals; any of these may be used to provide input to GRUB.
3756
3757 With @option{--remove}, remove the named terminals from the active list.
3758
3759 With no options but a list of terminal names, make only the listed terminal
3760 names active.
3761 @end deffn
3762
3763
3764 @node terminal_output
3765 @subsection terminal_output
3766
3767 @deffn Command terminal_output [@option{--append}|@option{--remove}] @
3768  [terminal1] [terminal2] @dots{}
3769 List or select an output terminal.
3770
3771 With no arguments, list the active and available output terminals.
3772
3773 With @option{--append}, add the named terminals to the list of active output
3774 terminals; all of these will receive output from GRUB.
3775
3776 With @option{--remove}, remove the named terminals from the active list.
3777
3778 With no options but a list of terminal names, make only the listed terminal
3779 names active.
3780 @end deffn
3781
3782
3783 @node terminfo
3784 @subsection terminfo
3785
3786 @deffn Command terminfo [-a|-u|-v] [term]
3787 Define the capabilities of your terminal by giving the name of an entry in
3788 the terminfo database, which should correspond roughly to a @samp{TERM}
3789 environment variable in Unix.
3790
3791 The currently available terminal types are @samp{vt100}, @samp{vt100-color},
3792 @samp{ieee1275}, and @samp{dumb}.  If you need other terminal types, please
3793 contact us to discuss the best way to include support for these in GRUB.
3794
3795 The @option{-a} (@option{--ascii}), @option{-u} (@option{--utf8}), and
3796 @option{-v} (@option{--visual-utf8}) options control how non-ASCII text is
3797 displayed.  @option{-a} specifies an ASCII-only terminal; @option{-u}
3798 specifies logically-ordered UTF-8; and @option{-v} specifies
3799 "visually-ordered UTF-8" (in other words, arranged such that a terminal
3800 emulator without bidirectional text support will display right-to-left text
3801 in the proper order; this is not really proper UTF-8, but a workaround).
3802
3803 If no option or terminal type is specified, the current terminal type is
3804 printed.
3805 @end deffn
3806
3807
3808 @node Command-line and menu entry commands
3809 @section The list of command-line and menu entry commands
3810
3811 These commands are usable in the command-line and in menu entries.  If
3812 you forget a command, you can run the command @command{help}
3813 (@pxref{help}).
3814
3815 @menu
3816 * [::                           Check file types and compare values
3817 * acpi::                        Load ACPI tables
3818 * authenticate::                Check whether user is in user list
3819 * background_color::            Set background color for active terminal
3820 * background_image::            Load background image for active terminal
3821 * badram::                      Filter out bad regions of RAM
3822 * blocklist::                   Print a block list
3823 * boot::                        Start up your operating system
3824 * cat::                         Show the contents of a file
3825 * chainloader::                 Chain-load another boot loader
3826 * clear::                       Clear the screen
3827 * cmosclean::                   Clear bit in CMOS
3828 * cmosdump::                    Dump CMOS contents
3829 * cmostest::                    Test bit in CMOS
3830 * cmp::                         Compare two files
3831 * configfile::                  Load a configuration file
3832 * cpuid::                       Check for CPU features
3833 * crc::                         Compute or check CRC32 checksums
3834 * cryptomount::                 Mount a crypto device
3835 * date::                        Display or set current date and time
3836 * devicetree::                  Load a device tree blob
3837 * distrust::                    Remove a pubkey from trusted keys
3838 * drivemap::                    Map a drive to another
3839 * echo::                        Display a line of text
3840 * eval::                        Evaluate agruments as GRUB commands
3841 * export::                      Export an environment variable
3842 * false::                       Do nothing, unsuccessfully
3843 * gettext::                     Translate a string
3844 * gptsync::                     Fill an MBR based on GPT entries
3845 * halt::                        Shut down your computer
3846 * hashsum::                     Compute or check hash checksum
3847 * help::                        Show help messages
3848 * initrd::                      Load a Linux initrd
3849 * initrd16::                    Load a Linux initrd (16-bit mode)
3850 * insmod::                      Insert a module
3851 * keystatus::                   Check key modifier status
3852 * linux::                       Load a Linux kernel
3853 * linux16::                     Load a Linux kernel (16-bit mode)
3854 * list_env::                    List variables in environment block
3855 * list_trusted::                List trusted public keys
3856 * load_env::                    Load variables from environment block
3857 * loadfont::                    Load font files
3858 * loopback::                    Make a device from a filesystem image
3859 * ls::                          List devices or files
3860 * lsfonts::                     List loaded fonts
3861 * lsmod::                       Show loaded modules
3862 * md5sum::                      Compute or check MD5 hash
3863 * module::                      Load module for multiboot kernel
3864 * multiboot::                   Load multiboot compliant kernel
3865 * nativedisk::                  Switch to native disk drivers
3866 * normal::                      Enter normal mode
3867 * normal_exit::                 Exit from normal mode
3868 * parttool::                    Modify partition table entries
3869 * password::                    Set a clear-text password
3870 * password_pbkdf2::             Set a hashed password
3871 * play::                        Play a tune
3872 * probe::                       Retrieve device info
3873 * pxe_unload::                  Unload the PXE environment
3874 * read::                        Read user input
3875 * reboot::                      Reboot your computer
3876 * regexp::                      Test if regular expression matches string
3877 * rmmod::                       Remove a module
3878 * save_env::                    Save variables to environment block
3879 * search::                      Search devices by file, label, or UUID
3880 * sendkey::                     Emulate keystrokes
3881 * set::                         Set an environment variable
3882 * sha1sum::                     Compute or check SHA1 hash
3883 * sha256sum::                   Compute or check SHA256 hash
3884 * sha512sum::                   Compute or check SHA512 hash
3885 * sleep::                       Wait for a specified number of seconds
3886 * source::                      Read a configuration file in same context
3887 * test::                        Check file types and compare values
3888 * true::                        Do nothing, successfully
3889 * trust::                       Add public key to list of trusted keys
3890 * unset::                       Unset an environment variable
3891 * uppermem::                    Set the upper memory size
3892 @comment * vbeinfo::                     List available video modes
3893 * verify_detached::             Verify detached digital signature
3894 * videoinfo::                   List available video modes
3895 @comment * xen_*::              Xen boot commands for AArch64
3896 * xen_hypervisor::              Load xen hypervisor binary (only on AArch64)
3897 * xen_module::                  Load xen modules for xen hypervisor (only on AArch64)
3898 @end menu
3899
3900
3901 @node [
3902 @subsection [
3903 @deffn Command @code{[} expression @code{]}
3904 Alias for @code{test @var{expression}} (@pxref{test}).
3905 @end deffn
3906
3907
3908 @node acpi
3909 @subsection acpi
3910
3911 @deffn Command acpi [@option{-1}|@option{-2}] @
3912  [@option{--exclude=table1,@dots{}}|@option{--load-only=table1,@dots{}}] @
3913  [@option{--oemid=id}] [@option{--oemtable=table}] @
3914  [@option{--oemtablerev=rev}] [@option{--oemtablecreator=creator}] @
3915  [@option{--oemtablecreatorrev=rev}] [@option{--no-ebda}] @
3916  filename @dots{}
3917 Modern BIOS systems normally implement the Advanced Configuration and Power
3918 Interface (ACPI), and define various tables that describe the interface
3919 between an ACPI-compliant operating system and the firmware. In some cases,
3920 the tables provided by default only work well with certain operating
3921 systems, and it may be necessary to replace some of them.
3922
3923 Normally, this command will replace the Root System Description Pointer
3924 (RSDP) in the Extended BIOS Data Area to point to the new tables. If the
3925 @option{--no-ebda} option is used, the new tables will be known only to
3926 GRUB, but may be used by GRUB's EFI emulation.
3927 @end deffn
3928
3929
3930 @node authenticate
3931 @subsection authenticate
3932 @deffn Command authenticate [userlist]
3933 Check whether user is in @var{userlist} or listed in the value of variable
3934 @samp{superusers}. See @pxref{superusers} for valid user list format.
3935 If @samp{superusers} is empty, this command returns true. @xref{Security}.
3936 @end deffn
3937
3938
3939 @node background_color
3940 @subsection background_color
3941
3942 @deffn Command background_color color
3943 Set background color for active terminal. For valid color specifications see
3944 @pxref{Theme file format, ,Colors}. Background color can be changed only when
3945 using @samp{gfxterm} for terminal output.
3946
3947 This command sets color of empty areas without text. Text background color
3948 is controlled by environment variables @var{color_normal}, @var{color_highlight},
3949 @var{menu_color_normal}, @var{menu_color_highlight}. @xref{Special environment variables}.
3950 @end deffn
3951
3952
3953 @node background_image
3954 @subsection background_image
3955
3956 @deffn Command background_image [[@option{--mode} @samp{stretch}|@samp{normal}] file]
3957 Load background image for active terminal from @var{file}. Image is stretched
3958 to fill up entire screen unless option @option{--mode} @samp{normal} is given.
3959 Without arguments remove currently loaded background image. Background image
3960 can be changed only when using @samp{gfxterm} for terminal output.
3961
3962 @end deffn
3963
3964
3965 @node badram
3966 @subsection badram
3967
3968 @deffn Command badram addr,mask[,addr,mask...]
3969 Filter out bad RAM.
3970 @end deffn
3971
3972 This command notifies the memory manager that specified regions of
3973 RAM ought to be filtered out (usually, because they're damaged).  This
3974 remains in effect after a payload kernel has been loaded by GRUB, as
3975 long as the loaded kernel obtains its memory map from GRUB.  Kernels that
3976 support this include Linux, GNU Mach, the kernel of FreeBSD and Multiboot
3977 kernels in general.
3978
3979 Syntax is the same as provided by the @uref{http://www.memtest.org/,
3980 Memtest86+ utility}: a list of address/mask pairs.  Given a page-aligned
3981 address and a base address / mask pair, if all the bits of the page-aligned
3982 address that are enabled by the mask match with the base address, it means
3983 this page is to be filtered.  This syntax makes it easy to represent patterns
3984 that are often result of memory damage, due to physical distribution of memory
3985 cells.
3986
3987 @node blocklist
3988 @subsection blocklist
3989
3990 @deffn Command blocklist file
3991 Print a block list (@pxref{Block list syntax}) for @var{file}.
3992 @end deffn
3993
3994
3995 @node boot
3996 @subsection boot
3997
3998 @deffn Command boot
3999 Boot the OS or chain-loader which has been loaded. Only necessary if
4000 running the fully interactive command-line (it is implicit at the end of
4001 a menu entry).
4002 @end deffn
4003
4004
4005 @node cat
4006 @subsection cat
4007
4008 @deffn Command cat [@option{--dos}] file
4009 Display the contents of the file @var{file}. This command may be useful
4010 to remind you of your OS's root partition:
4011
4012 @example
4013 grub> @kbd{cat /etc/fstab}
4014 @end example
4015
4016 If the @option{--dos} option is used, then carriage return / new line pairs
4017 will be displayed as a simple new line.  Otherwise, the carriage return will
4018 be displayed as a control character (@samp{<d>}) to make it easier to see
4019 when boot problems are caused by a file formatted using DOS-style line
4020 endings.
4021 @end deffn
4022
4023
4024 @node chainloader
4025 @subsection chainloader
4026
4027 @deffn Command chainloader [@option{--force}] file
4028 Load @var{file} as a chain-loader. Like any other file loaded by the
4029 filesystem code, it can use the blocklist notation (@pxref{Block list
4030 syntax}) to grab the first sector of the current partition with @samp{+1}.
4031 If you specify the option @option{--force}, then load @var{file} forcibly,
4032 whether it has a correct signature or not. This is required when you want to
4033 load a defective boot loader, such as SCO UnixWare 7.1.
4034 @end deffn
4035
4036
4037 @node clear
4038 @subsection clear
4039
4040 @deffn Command clear
4041 Clear the screen.
4042 @end deffn
4043
4044
4045 @node cmosclean
4046 @subsection cmosclean
4047
4048 @deffn Command cmosclean byte:bit
4049 Clear value of bit in CMOS at location @var{byte}:@var{bit}. This command
4050 is available only on platforms that support CMOS.
4051 @end deffn
4052
4053
4054 @node cmosdump
4055 @subsection cmosdump
4056
4057 @deffn Dump CMOS contents
4058 Dump full CMOS contents as hexadecimal values. This command is available only
4059 on platforms that support CMOS.
4060 @end deffn
4061
4062
4063 @node cmostest
4064 @subsection cmostest
4065
4066 @deffn Command cmostest byte:bit
4067 Test value of bit in CMOS at location @var{byte}:@var{bit}. Exit status
4068 is zero if bit is set, non zero otherwise. This command is available only
4069 on platforms that support CMOS.
4070 @end deffn
4071
4072
4073 @node cmp
4074 @subsection cmp
4075
4076 @deffn Command cmp file1 file2
4077 Compare the file @var{file1} with the file @var{file2}. If they differ
4078 in size, print the sizes like this:
4079
4080 @example
4081 Differ in size: 0x1234 [foo], 0x4321 [bar]
4082 @end example
4083
4084 If the sizes are equal but the bytes at an offset differ, then print the
4085 bytes like this:
4086
4087 @example
4088 Differ at the offset 777: 0xbe [foo], 0xef [bar]
4089 @end example
4090
4091 If they are completely identical, nothing will be printed.
4092 @end deffn
4093
4094
4095 @node configfile
4096 @subsection configfile
4097
4098 @deffn Command configfile file
4099 Load @var{file} as a configuration file.  If @var{file} defines any menu
4100 entries, then show a menu containing them immediately.  Any environment
4101 variable changes made by the commands in @var{file} will not be preserved
4102 after @command{configfile} returns.
4103 @end deffn
4104
4105
4106 @node cpuid
4107 @subsection cpuid
4108
4109 @deffn Command cpuid [-l] [-p]
4110 Check for CPU features.  This command is only available on x86 systems.
4111
4112 With the @option{-l} option, return true if the CPU supports long mode
4113 (64-bit).
4114
4115 With the @option{-p} option, return true if the CPU supports Physical
4116 Address Extension (PAE).
4117
4118 If invoked without options, this command currently behaves as if it had been
4119 invoked with @option{-l}.  This may change in the future.
4120 @end deffn
4121
4122
4123 @node crc
4124 @subsection crc
4125
4126 @deffn Command crc arg @dots{}
4127 Alias for @code{hashsum --hash crc32 arg @dots{}}. See command @command{hashsum}
4128 (@pxref{hashsum}) for full description.
4129 @end deffn
4130
4131
4132 @node cryptomount
4133 @subsection cryptomount
4134
4135 @deffn Command cryptomount device|@option{-u} uuid|@option{-a}|@option{-b}
4136 Setup access to encrypted device. If necessary, passphrase
4137 is requested interactively. Option @var{device} configures specific grub device
4138 (@pxref{Naming convention}); option @option{-u} @var{uuid} configures device
4139 with specified @var{uuid}; option @option{-a} configures all detected encrypted
4140 devices; option @option{-b} configures all geli containers that have boot flag set.
4141
4142 GRUB suports devices encrypted using LUKS and geli. Note that necessary modules (@var{luks} and @var{geli}) have to be loaded manually before this command can
4143 be used.
4144 @end deffn
4145
4146
4147 @node date
4148 @subsection date
4149
4150 @deffn Command date [[year-]month-day] [hour:minute[:second]]
4151 With no arguments, print the current date and time.
4152
4153 Otherwise, take the current date and time, change any elements specified as
4154 arguments, and set the result as the new date and time.  For example, `date
4155 01-01' will set the current month and day to January 1, but leave the year,
4156 hour, minute, and second unchanged.
4157 @end deffn
4158
4159
4160 @node devicetree
4161 @subsection linux
4162
4163 @deffn Command devicetree file
4164 Load a device tree blob (.dtb) from a filesystem, for later use by a Linux
4165 kernel. Does not perform merging with any device tree supplied by firmware,
4166 but rather replaces it completely.
4167 @ref{GNU/Linux}.
4168 @end deffn
4169
4170 @node distrust
4171 @subsection distrust
4172
4173 @deffn Command distrust pubkey_id
4174 Remove public key @var{pubkey_id} from GRUB's keyring of trusted keys.
4175 @var{pubkey_id} is the last four bytes (eight hexadecimal digits) of
4176 the GPG v4 key id, which is also the output of @command{list_trusted}
4177 (@pxref{list_trusted}).  Outside of GRUB, the key id can be obtained
4178 using @code{gpg --fingerprint}).
4179 These keys are used to validate signatures when environment variable
4180 @code{check_signatures} is set to @code{enforce}
4181 (@pxref{check_signatures}), and by some invocations of
4182 @command{verify_detached} (@pxref{verify_detached}).  @xref{Using
4183 digital signatures}, for more information.
4184 @end deffn
4185
4186 @node drivemap
4187 @subsection drivemap
4188
4189 @deffn Command drivemap @option{-l}|@option{-r}|[@option{-s}] @
4190  from_drive to_drive
4191 Without options, map the drive @var{from_drive} to the drive @var{to_drive}.
4192 This is necessary when you chain-load some operating systems, such as DOS,
4193 if such an OS resides at a non-first drive.  For convenience, any partition
4194 suffix on the drive is ignored, so you can safely use @verb{'${root}'} as a
4195 drive specification.
4196
4197 With the @option{-s} option, perform the reverse mapping as well, swapping
4198 the two drives.
4199
4200 With the @option{-l} option, list the current mappings.
4201
4202 With the @option{-r} option, reset all mappings to the default values.
4203
4204 For example:
4205
4206 @example
4207 drivemap -s (hd0) (hd1)
4208 @end example
4209 @end deffn
4210
4211
4212 @node echo
4213 @subsection echo
4214
4215 @deffn Command echo [@option{-n}] [@option{-e}] string @dots{}
4216 Display the requested text and, unless the @option{-n} option is used, a
4217 trailing new line.  If there is more than one string, they are separated by
4218 spaces in the output.  As usual in GRUB commands, variables may be
4219 substituted using @samp{$@{var@}}.
4220
4221 The @option{-e} option enables interpretation of backslash escapes.  The
4222 following sequences are recognised:
4223
4224 @table @code
4225 @item \\
4226 backslash
4227
4228 @item \a
4229 alert (BEL)
4230
4231 @item \c
4232 suppress trailing new line
4233
4234 @item \f
4235 form feed
4236
4237 @item \n
4238 new line
4239
4240 @item \r
4241 carriage return
4242
4243 @item \t
4244 horizontal tab
4245
4246 @item \v
4247 vertical tab
4248 @end table
4249
4250 When interpreting backslash escapes, backslash followed by any other
4251 character will print that character.
4252 @end deffn
4253
4254
4255 @node eval
4256 @subsection eval
4257
4258 @deffn Command eval string ...
4259 Concatenate arguments together using single space as separator and evaluate
4260 result as sequence of GRUB commands.
4261 @end deffn
4262
4263
4264 @node export
4265 @subsection export
4266
4267 @deffn Command export envvar
4268 Export the environment variable @var{envvar}. Exported variables are visible
4269 to subsidiary configuration files loaded using @command{configfile}.
4270 @end deffn
4271
4272
4273 @node false
4274 @subsection false
4275
4276 @deffn Command false
4277 Do nothing, unsuccessfully.  This is mainly useful in control constructs
4278 such as @code{if} and @code{while} (@pxref{Shell-like scripting}).
4279 @end deffn
4280
4281
4282 @node gettext
4283 @subsection gettext
4284
4285 @deffn Command gettext string
4286 Translate @var{string} into the current language.
4287
4288 The current language code is stored in the @samp{lang} variable in GRUB's
4289 environment (@pxref{lang}).  Translation files in MO format are read from
4290 @samp{locale_dir} (@pxref{locale_dir}), usually @file{/boot/grub/locale}.
4291 @end deffn
4292
4293
4294 @node gptsync
4295 @subsection gptsync
4296
4297 @deffn Command gptsync device [partition[+/-[type]]] @dots{}
4298 Disks using the GUID Partition Table (GPT) also have a legacy Master Boot
4299 Record (MBR) partition table for compatibility with the BIOS and with older
4300 operating systems.  The legacy MBR can only represent a limited subset of
4301 GPT partition entries.
4302
4303 This command populates the legacy MBR with the specified @var{partition}
4304 entries on @var{device}.  Up to three partitions may be used.
4305
4306 @var{type} is an MBR partition type code; prefix with @samp{0x} if you want
4307 to enter this in hexadecimal.  The separator between @var{partition} and
4308 @var{type} may be @samp{+} to make the partition active, or @samp{-} to make
4309 it inactive; only one partition may be active.  If both the separator and
4310 type are omitted, then the partition will be inactive.
4311 @end deffn
4312
4313
4314 @node halt
4315 @subsection halt
4316
4317 @deffn Command halt @option{--no-apm}
4318 The command halts the computer. If the @option{--no-apm} option
4319 is specified, no APM BIOS call is performed. Otherwise, the computer
4320 is shut down using APM.
4321 @end deffn
4322
4323
4324 @node hashsum
4325 @subsection hashsum
4326
4327 @deffn Command hashsum @option{--hash} hash @option{--keep-going} @option{--uncompress} @option{--check} file [@option{--prefix} dir]|file @dots{}
4328 Compute or verify file hashes. Hash type is selected with option @option{--hash}.
4329 Supported hashes are: @samp{adler32}, @samp{crc64}, @samp{crc32},
4330 @samp{crc32rfc1510}, @samp{crc24rfc2440}, @samp{md4}, @samp{md5},
4331 @samp{ripemd160}, @samp{sha1}, @samp{sha224}, @samp{sha256}, @samp{sha512},
4332 @samp{sha384}, @samp{tiger192}, @samp{tiger}, @samp{tiger2}, @samp{whirlpool}.
4333 Option @option{--uncompress} uncompresses files before computing hash.
4334
4335 When list of files is given, hash of each file is computed and printed,
4336 followed by file name, each file on a new line.
4337
4338 When option @option{--check} is given, it points to a file that contains
4339 list of @var{hash name} pairs in the same format as used by UNIX
4340 @command{md5sum} command. Option @option{--prefix}
4341 may be used to give directory where files are located. Hash verification
4342 stops after the first mismatch was found unless option @option{--keep-going}
4343 was given.  The exit code @code{$?} is set to 0 if hash verification
4344 is successful.  If it fails, @code{$?} is set to a nonzero value.
4345 @end deffn
4346
4347
4348 @node help
4349 @subsection help
4350
4351 @deffn Command help [pattern @dots{}]
4352 Display helpful information about builtin commands. If you do not
4353 specify @var{pattern}, this command shows short descriptions of all
4354 available commands.
4355
4356 If you specify any @var{patterns}, it displays longer information
4357 about each of the commands whose names begin with those @var{patterns}.
4358 @end deffn
4359
4360
4361 @node initrd
4362 @subsection initrd
4363
4364 @deffn Command initrd file
4365 Load an initial ramdisk for a Linux kernel image, and set the appropriate
4366 parameters in the Linux setup area in memory.  This may only be used after
4367 the @command{linux} command (@pxref{linux}) has been run.  See also
4368 @ref{GNU/Linux}.
4369 @end deffn
4370
4371
4372 @node initrd16
4373 @subsection initrd16
4374
4375 @deffn Command initrd16 file
4376 Load an initial ramdisk for a Linux kernel image to be booted in 16-bit
4377 mode, and set the appropriate parameters in the Linux setup area in memory.
4378 This may only be used after the @command{linux16} command (@pxref{linux16})
4379 has been run.  See also @ref{GNU/Linux}.
4380
4381 This command is only available on x86 systems.
4382 @end deffn
4383
4384
4385 @node insmod
4386 @subsection insmod
4387
4388 @deffn Command insmod module
4389 Insert the dynamic GRUB module called @var{module}.
4390 @end deffn
4391
4392
4393 @node keystatus
4394 @subsection keystatus
4395
4396 @deffn Command keystatus [@option{--shift}] [@option{--ctrl}] [@option{--alt}]
4397 Return true if the Shift, Control, or Alt modifier keys are held down, as
4398 requested by options. This is useful in scripting, to allow some user
4399 control over behaviour without having to wait for a keypress.
4400
4401 Checking key modifier status is only supported on some platforms. If invoked
4402 without any options, the @command{keystatus} command returns true if and
4403 only if checking key modifier status is supported.
4404 @end deffn
4405
4406
4407 @node linux
4408 @subsection linux
4409
4410 @deffn Command linux file @dots{}
4411 Load a Linux kernel image from @var{file}.  The rest of the line is passed
4412 verbatim as the @dfn{kernel command-line}.  Any initrd must be reloaded
4413 after using this command (@pxref{initrd}).
4414
4415 On x86 systems, the kernel will be booted using the 32-bit boot protocol.
4416 Note that this means that the @samp{vga=} boot option will not work; if you
4417 want to set a special video mode, you will need to use GRUB commands such as
4418 @samp{set gfxpayload=1024x768} or @samp{set gfxpayload=keep} (to keep the
4419 same mode as used in GRUB) instead.  GRUB can automatically detect some uses
4420 of @samp{vga=} and translate them to appropriate settings of
4421 @samp{gfxpayload}.  The @command{linux16} command (@pxref{linux16}) avoids
4422 this restriction.
4423 @end deffn
4424
4425
4426 @node linux16
4427 @subsection linux16
4428
4429 @deffn Command linux16 file @dots{}
4430 Load a Linux kernel image from @var{file} in 16-bit mode.  The rest of the
4431 line is passed verbatim as the @dfn{kernel command-line}.  Any initrd must
4432 be reloaded after using this command (@pxref{initrd16}).
4433
4434 The kernel will be booted using the traditional 16-bit boot protocol.  As
4435 well as bypassing problems with @samp{vga=} described in @ref{linux}, this
4436 permits booting some other programs that implement the Linux boot protocol
4437 for the sake of convenience.
4438
4439 This command is only available on x86 systems.
4440 @end deffn
4441
4442
4443 @node list_env
4444 @subsection list_env
4445
4446 @deffn Command list_env [@option{--file} file]
4447 List all variables in the environment block file.  @xref{Environment block}.
4448
4449 The @option{--file} option overrides the default location of the
4450 environment block.
4451 @end deffn
4452
4453 @node list_trusted
4454 @subsection list_trusted
4455
4456 @deffn Command list_trusted
4457 List all public keys trusted by GRUB for validating signatures.
4458 The output is in GPG's v4 key fingerprint format (i.e., the output of
4459 @code{gpg --fingerprint}).  The least significant four bytes (last
4460 eight hexadecimal digits) can be used as an argument to
4461 @command{distrust} (@pxref{distrust}).
4462 @xref{Using digital signatures}, for more information about uses for
4463 these keys.
4464 @end deffn
4465
4466 @node load_env
4467 @subsection load_env
4468
4469 @deffn Command load_env [@option{--file} file] [@option{--skip-sig}] [whitelisted_variable_name] @dots{}
4470 Load all variables from the environment block file into the environment.
4471 @xref{Environment block}.
4472
4473 The @option{--file} option overrides the default location of the environment
4474 block.
4475
4476 The @option{--skip-sig} option skips signature checking even when the
4477 value of environment variable @code{check_signatures} is set to
4478 @code{enforce} (@pxref{check_signatures}).
4479
4480 If one or more variable names are provided as arguments, they are
4481 interpreted as a whitelist of variables to load from the environment
4482 block file.  Variables set in the file but not present in the
4483 whitelist are ignored.
4484
4485 The @option{--skip-sig} option should be used with care, and should
4486 always be used in concert with a whitelist of acceptable variables
4487 whose values should be set.  Failure to employ a carefully constructed
4488 whitelist could result in reading a malicious value into critical
4489 environment variables from the file, such as setting
4490 @code{check_signatures=no}, modifying @code{prefix} to boot from an
4491 unexpected location or not at all, etc.
4492
4493 When used with care, @option{--skip-sig} and the whitelist enable an
4494 administrator to configure a system to boot only signed
4495 configurations, but to allow the user to select from among multiple
4496 configurations, and to enable ``one-shot'' boot attempts and
4497 ``savedefault'' behavior.  @xref{Using digital signatures}, for more
4498 information.
4499 @end deffn
4500
4501
4502 @node loadfont
4503 @subsection loadfont
4504
4505 @deffn Command loadfont file @dots{}
4506 Load specified font files. Unless absolute pathname is given, @var{file}
4507 is assumed to be in directory @samp{$prefix/fonts} with
4508 suffix @samp{.pf2} appended. @xref{Theme file format,,Fonts}.
4509 @end deffn
4510
4511
4512 @node loopback
4513 @subsection loopback
4514
4515 @deffn Command loopback [@option{-d}] device file
4516 Make the device named @var{device} correspond to the contents of the
4517 filesystem image in @var{file}.  For example:
4518
4519 @example
4520 loopback loop0 /path/to/image
4521 ls (loop0)/
4522 @end example
4523
4524 With the @option{-d} option, delete a device previously created using this
4525 command.
4526 @end deffn
4527
4528
4529 @node ls
4530 @subsection ls
4531
4532 @deffn Command ls [arg @dots{}]
4533 List devices or files.
4534
4535 With no arguments, print all devices known to GRUB.
4536
4537 If the argument is a device name enclosed in parentheses (@pxref{Device
4538 syntax}), then print the name of the filesystem of that device.
4539
4540 If the argument is a directory given as an absolute file name (@pxref{File
4541 name syntax}), then list the contents of that directory.
4542 @end deffn
4543
4544
4545 @node lsfonts
4546 @subsection lsfonts
4547
4548 @deffn Command lsfonts
4549 List loaded fonts.
4550 @end deffn
4551
4552
4553 @node lsmod
4554 @subsection lsmod
4555
4556 @deffn Command lsmod
4557 Show list of loaded modules.
4558 @end deffn
4559
4560 @node md5sum
4561 @subsection md5sum
4562
4563 @deffn Command md5sum arg @dots{}
4564 Alias for @code{hashsum --hash md5 arg @dots{}}. See command @command{hashsum}
4565 (@pxref{hashsum}) for full description.
4566 @end deffn
4567
4568 @node module
4569 @subsection module
4570
4571 @deffn Command module [--nounzip] file [arguments]
4572 Load a module for multiboot kernel image.  The rest of the
4573 line is passed verbatim as the module command line.
4574 @end deffn
4575
4576 @node multiboot
4577 @subsection multiboot
4578
4579 @deffn Command multiboot [--quirk-bad-kludge] [--quirk-modules-after-kernel] file @dots{}
4580 Load a multiboot kernel image from @var{file}.  The rest of the
4581 line is passed verbatim as the @dfn{kernel command-line}.  Any module must
4582 be reloaded after using this command (@pxref{module}).
4583
4584 Some kernels have known problems. You need to specify --quirk-* for those.
4585 --quirk-bad-kludge is a problem seen in several products that they include
4586 loading kludge information with invalid data in ELF file. GRUB prior to 0.97
4587 and some custom builds prefered ELF information while 0.97 and GRUB 2
4588 use kludge. Use this option to ignore kludge.
4589 Known affected systems: old Solaris, SkyOS.
4590
4591 --quirk-modules-after-kernel is needed for kernels which load at relatively
4592 high address e.g. 16MiB mark and can't cope with modules stuffed between
4593 1MiB mark and beginning of the kernel.
4594 Known afftected systems: VMWare.
4595 @end deffn
4596
4597 @node nativedisk
4598 @subsection nativedisk
4599
4600 @deffn Command nativedisk
4601 Switch from firmware disk drivers to native ones.
4602 Really useful only on platforms where both
4603 firmware and native disk drives are available.
4604 Currently i386-pc, i386-efi, i386-ieee1275 and
4605 x86_64-efi.
4606 @end deffn
4607
4608 @node normal
4609 @subsection normal
4610
4611 @deffn Command normal [file]
4612 Enter normal mode and display the GRUB menu.
4613
4614 In normal mode, commands, filesystem modules, and cryptography modules are
4615 automatically loaded, and the full GRUB script parser is available.  Other
4616 modules may be explicitly loaded using @command{insmod} (@pxref{insmod}).
4617
4618 If a @var{file} is given, then commands will be read from that file.
4619 Otherwise, they will be read from @file{$prefix/grub.cfg} if it exists.
4620
4621 @command{normal} may be called from within normal mode, creating a nested
4622 environment.  It is more usual to use @command{configfile}
4623 (@pxref{configfile}) for this.
4624 @end deffn
4625
4626
4627 @node normal_exit
4628 @subsection normal_exit
4629
4630 @deffn Command normal_exit
4631 Exit normal mode (@pxref{normal}).  If this instance of normal mode was not
4632 nested within another one, then return to rescue mode.
4633 @end deffn
4634
4635
4636 @node parttool
4637 @subsection parttool
4638
4639 @deffn Command parttool partition commands
4640 Make various modifications to partition table entries.
4641
4642 Each @var{command} is either a boolean option, in which case it must be
4643 followed with @samp{+} or @samp{-} (with no intervening space) to enable or
4644 disable that option, or else it takes a value in the form
4645 @samp{@var{command}=@var{value}}.
4646
4647 Currently, @command{parttool} is only useful on DOS partition tables (also
4648 known as Master Boot Record, or MBR).  On these partition tables, the
4649 following commands are available:
4650
4651 @table @asis
4652 @item @samp{boot} (boolean)
4653 When enabled, this makes the selected partition be the active (bootable)
4654 partition on its disk, clearing the active flag on all other partitions.
4655 This command is limited to @emph{primary} partitions.
4656
4657 @item @samp{type} (value)
4658 Change the type of an existing partition.  The value must be a number in the
4659 range 0-0xFF (prefix with @samp{0x} to enter it in hexadecimal).
4660
4661 @item @samp{hidden} (boolean)
4662 When enabled, this hides the selected partition by setting the @dfn{hidden}
4663 bit in its partition type code; when disabled, unhides the selected
4664 partition by clearing this bit.  This is useful only when booting DOS or
4665 Windows and multiple primary FAT partitions exist in one disk.  See also
4666 @ref{DOS/Windows}.
4667 @end table
4668 @end deffn
4669
4670
4671 @node password
4672 @subsection password
4673
4674 @deffn Command password user clear-password
4675 Define a user named @var{user} with password @var{clear-password}.
4676 @xref{Security}.
4677 @end deffn
4678
4679
4680 @node password_pbkdf2
4681 @subsection password_pbkdf2
4682
4683 @deffn Command password_pbkdf2 user hashed-password
4684 Define a user named @var{user} with password hash @var{hashed-password}.
4685 Use @command{grub-mkpasswd-pbkdf2} (@pxref{Invoking grub-mkpasswd-pbkdf2})
4686 to generate password hashes.  @xref{Security}.
4687 @end deffn
4688
4689
4690 @node play
4691 @subsection play
4692
4693 @deffn Command play file | tempo [pitch1 duration1] [pitch2 duration2] @dots{}
4694 Plays a tune
4695
4696 If the argument is a file name (@pxref{File name syntax}), play the tune
4697 recorded in it.  The file format is first the tempo as an unsigned 32bit
4698 little-endian number, then pairs of unsigned 16bit little-endian numbers for
4699 pitch and duration pairs.
4700
4701 If the arguments are a series of numbers, play the inline tune.
4702
4703 The tempo is the base for all note durations. 60 gives a 1-second base, 120
4704 gives a half-second base, etc.  Pitches are Hz.  Set pitch to 0 to produce
4705 a rest.
4706 @end deffn
4707
4708
4709 @node probe
4710 @subsection probe
4711
4712 @deffn Command probe [@option{--set} var] @option{--driver}|@option{--partmap}|@option{--fs}|@option{--fs-uuid}|@option{--label} device
4713 Retrieve device information. If option @option{--set} is given, assign result
4714 to variable @var{var}, otherwise print information on the screen.
4715 @end deffn
4716
4717
4718 @node pxe_unload
4719 @subsection pxe_unload
4720
4721 @deffn Command pxe_unload
4722 Unload the PXE environment (@pxref{Network}).
4723
4724 This command is only available on PC BIOS systems.
4725 @end deffn
4726
4727
4728 @node read
4729 @subsection read
4730
4731 @deffn Command read [var]
4732 Read a line of input from the user.  If an environment variable @var{var} is
4733 given, set that environment variable to the line of input that was read,
4734 with no terminating newline.
4735 @end deffn
4736
4737
4738 @node reboot
4739 @subsection reboot
4740
4741 @deffn Command reboot
4742 Reboot the computer.
4743 @end deffn
4744
4745
4746 @node regexp
4747 @subsection regexp
4748
4749 @deffn Command regexp [@option{--set} [number:]var] regexp string
4750 Test if regular expression @var{regexp} matches @var{string}. Supported
4751 regular expressions are POSIX.2 Extended Regular Expressions. If option
4752 @option{--set} is given, store @var{number}th matched subexpression in
4753 variable @var{var}. Subexpressions are numbered in order of their opening
4754 parentheses starting from @samp{1}.  @var{number} defaults to @samp{1}.
4755 @end deffn
4756
4757
4758 @node rmmod
4759 @subsection rmmod
4760
4761 @deffn Command rmmod module
4762 Remove a loaded @var{module}.
4763 @end deffn
4764
4765
4766 @node save_env
4767 @subsection save_env
4768
4769 @deffn Command save_env [@option{--file} file] var @dots{}
4770 Save the named variables from the environment to the environment block file.
4771 @xref{Environment block}.
4772
4773 The @option{--file} option overrides the default location of the environment
4774 block.
4775
4776 This command will operate successfully even when environment variable
4777 @code{check_signatures} is set to @code{enforce}
4778 (@pxref{check_signatures}), since it writes to disk and does not alter
4779 the behavior of GRUB based on any contents of disk that have been
4780 read.  It is possible to modify a digitally signed environment block
4781 file from within GRUB using this command, such that its signature will
4782 no longer be valid on subsequent boots.  Care should be taken in such
4783 advanced configurations to avoid rendering the system
4784 unbootable. @xref{Using digital signatures}, for more information.
4785 @end deffn
4786
4787
4788 @node search
4789 @subsection search
4790
4791 @deffn Command search @
4792  [@option{--file}|@option{--label}|@option{--fs-uuid}] @
4793  [@option{--set} [var]] [@option{--no-floppy}] name
4794 Search devices by file (@option{-f}, @option{--file}), filesystem label
4795 (@option{-l}, @option{--label}), or filesystem UUID (@option{-u},
4796 @option{--fs-uuid}).
4797
4798 If the @option{--set} option is used, the first device found is set as the
4799 value of environment variable @var{var}.  The default variable is
4800 @samp{root}.
4801
4802 The @option{--no-floppy} option prevents searching floppy devices, which can
4803 be slow.
4804
4805 The @samp{search.file}, @samp{search.fs_label}, and @samp{search.fs_uuid}
4806 commands are aliases for @samp{search --file}, @samp{search --label}, and
4807 @samp{search --fs-uuid} respectively.
4808 @end deffn
4809
4810
4811 @node sendkey
4812 @subsection sendkey
4813
4814 @deffn Command sendkey @
4815  [@option{--num}|@option{--caps}|@option{--scroll}|@option{--insert}|@
4816 @option{--pause}|@option{--left-shift}|@option{--right-shift}|@
4817 @option{--sysrq}|@option{--numkey}|@option{--capskey}|@option{--scrollkey}|@
4818 @option{--insertkey}|@option{--left-alt}|@option{--right-alt}|@
4819 @option{--left-ctrl}|@option{--right-ctrl} @
4820  @samp{on}|@samp{off}]@dots{} @
4821  [@option{no-led}] @
4822  keystroke
4823 Insert keystrokes into the keyboard buffer when booting.  Sometimes an
4824 operating system or chainloaded boot loader requires particular keys to be
4825 pressed: for example, one might need to press a particular key to enter
4826 "safe mode", or when chainloading another boot loader one might send
4827 keystrokes to it to navigate its menu.  
4828
4829 You may provide up to 16 keystrokes (the length of the BIOS keyboard
4830 buffer).  Keystroke names may be upper-case or lower-case letters, digits,
4831 or taken from the following table:
4832
4833 @c Please keep this table in the same order as in
4834 @c commands/i386/pc/sendkey.c, for ease of maintenance.
4835 @c Exception: The function and numeric keys are sorted, for aesthetics.
4836
4837 @multitable @columnfractions .4 .5
4838 @headitem Name @tab Key
4839 @item escape @tab Escape
4840 @item exclam @tab !
4841 @item at @tab @@
4842 @item numbersign @tab #
4843 @item dollar @tab $
4844 @item percent @tab %
4845 @item caret @tab ^
4846 @item ampersand @tab &
4847 @item asterisk @tab *
4848 @item parenleft @tab (
4849 @item parenright @tab )
4850 @item minus @tab -
4851 @item underscore @tab _
4852 @item equal @tab =
4853 @item plus @tab +
4854 @item backspace @tab Backspace
4855 @item tab @tab Tab
4856 @item bracketleft @tab [
4857 @item braceleft @tab @{
4858 @item bracketright @tab ]
4859 @item braceright @tab @}
4860 @item enter @tab Enter
4861 @item control @tab press and release Control
4862 @item semicolon @tab ;
4863 @item colon @tab :
4864 @item quote @tab '
4865 @item doublequote @tab "
4866 @item backquote @tab `
4867 @item tilde @tab ~
4868 @item shift @tab press and release left Shift
4869 @item backslash @tab \
4870 @item bar @tab |
4871 @item comma @tab ,
4872 @item less @tab <
4873 @item period @tab .
4874 @item greater @tab >
4875 @item slash @tab /
4876 @item question @tab ?
4877 @item rshift @tab press and release right Shift
4878 @item alt @tab press and release Alt
4879 @item space @tab space bar
4880 @item capslock @tab Caps Lock
4881 @item F1 @tab F1
4882 @item F2 @tab F2
4883 @item F3 @tab F3
4884 @item F4 @tab F4
4885 @item F5 @tab F5
4886 @item F6 @tab F6
4887 @item F7 @tab F7
4888 @item F8 @tab F8
4889 @item F9 @tab F9
4890 @item F10 @tab F10
4891 @item F11 @tab F11
4892 @item F12 @tab F12
4893 @item num1 @tab 1 (numeric keypad)
4894 @item num2 @tab 2 (numeric keypad)
4895 @item num3 @tab 3 (numeric keypad)
4896 @item num4 @tab 4 (numeric keypad)
4897 @item num5 @tab 5 (numeric keypad)
4898 @item num6 @tab 6 (numeric keypad)
4899 @item num7 @tab 7 (numeric keypad)
4900 @item num8 @tab 8 (numeric keypad)
4901 @item num9 @tab 9 (numeric keypad)
4902 @item num0 @tab 0 (numeric keypad)
4903 @item numperiod @tab . (numeric keypad)
4904 @item numend @tab End (numeric keypad)
4905 @item numdown @tab Down (numeric keypad)
4906 @item numpgdown @tab Page Down (numeric keypad)
4907 @item numleft @tab Left (numeric keypad)
4908 @item numcenter @tab 5 with Num Lock inactive (numeric keypad)
4909 @item numright @tab Right (numeric keypad)
4910 @item numhome @tab Home (numeric keypad)
4911 @item numup @tab Up (numeric keypad)
4912 @item numpgup @tab Page Up (numeric keypad)
4913 @item numinsert @tab Insert (numeric keypad)
4914 @item numdelete @tab Delete (numeric keypad)
4915 @item numasterisk @tab * (numeric keypad)
4916 @item numminus @tab - (numeric keypad)
4917 @item numplus @tab + (numeric keypad)
4918 @item numslash @tab / (numeric keypad)
4919 @item numenter @tab Enter (numeric keypad)
4920 @item delete @tab Delete
4921 @item insert @tab Insert
4922 @item home @tab Home
4923 @item end @tab End
4924 @item pgdown @tab Page Down
4925 @item pgup @tab Page Up
4926 @item down @tab Down
4927 @item up @tab Up
4928 @item left @tab Left
4929 @item right @tab Right
4930 @end multitable
4931
4932 As well as keystrokes, the @command{sendkey} command takes various options
4933 that affect the BIOS keyboard status flags.  These options take an @samp{on}
4934 or @samp{off} parameter, specifying that the corresponding status flag be
4935 set or unset; omitting the option for a given status flag will leave that
4936 flag at its initial state at boot.  The @option{--num}, @option{--caps},
4937 @option{--scroll}, and @option{--insert} options emulate setting the
4938 corresponding mode, while the @option{--numkey}, @option{--capskey},
4939 @option{--scrollkey}, and @option{--insertkey} options emulate pressing and
4940 holding the corresponding key.  The other status flag options are
4941 self-explanatory.
4942
4943 If the @option{--no-led} option is given, the status flag options will have
4944 no effect on keyboard LEDs.
4945
4946 If the @command{sendkey} command is given multiple times, then only the last
4947 invocation has any effect.
4948
4949 Since @command{sendkey} manipulates the BIOS keyboard buffer, it may cause
4950 hangs, reboots, or other misbehaviour on some systems.  If the operating
4951 system or boot loader that runs after GRUB uses its own keyboard driver
4952 rather than the BIOS keyboard functions, then @command{sendkey} will have no
4953 effect.
4954
4955 This command is only available on PC BIOS systems.
4956 @end deffn
4957
4958
4959 @node set
4960 @subsection set
4961
4962 @deffn Command set [envvar=value]
4963 Set the environment variable @var{envvar} to @var{value}. If invoked with no
4964 arguments, print all environment variables with their values.
4965 @end deffn
4966
4967
4968 @node sha1sum
4969 @subsection sha1sum
4970
4971 @deffn Command sha1sum arg @dots{}
4972 Alias for @code{hashsum --hash sha1 arg @dots{}}. See command @command{hashsum}
4973 (@pxref{hashsum}) for full description.
4974 @end deffn
4975
4976
4977 @node sha256sum
4978 @subsection sha256sum
4979
4980 @deffn Command sha256sum arg @dots{}
4981 Alias for @code{hashsum --hash sha256 arg @dots{}}. See command @command{hashsum}
4982 (@pxref{hashsum}) for full description.
4983 @end deffn
4984
4985
4986 @node sha512sum
4987 @subsection sha512sum
4988
4989 @deffn Command sha512sum arg @dots{}
4990 Alias for @code{hashsum --hash sha512 arg @dots{}}. See command @command{hashsum}
4991 (@pxref{hashsum}) for full description.
4992 @end deffn
4993
4994
4995 @node sleep
4996 @subsection sleep
4997
4998 @deffn Command sleep [@option{--verbose}] [@option{--interruptible}] count
4999 Sleep for @var{count} seconds. If option @option{--interruptible} is given,
5000 allow @key{ESC} to interrupt sleep. With @option{--verbose} show countdown
5001 of remaining seconds. Exit code is set to 0 if timeout expired and to 1
5002 if timeout was interrupted by @key{ESC}.
5003 @end deffn
5004
5005
5006 @node source
5007 @subsection source
5008
5009 @deffn Command source file
5010 Read @var{file} as a configuration file, as if its contents had been
5011 incorporated directly into the sourcing file.  Unlike @command{configfile}
5012 (@pxref{configfile}), this executes the contents of @var{file} without
5013 changing context: any environment variable changes made by the commands in
5014 @var{file} will be preserved after @command{source} returns, and the menu
5015 will not be shown immediately.
5016 @end deffn
5017
5018
5019 @node test
5020 @subsection test
5021
5022 @deffn Command test expression
5023 Evaluate @var{expression} and return zero exit status if result is true,
5024 non zero status otherwise.
5025
5026 @var{expression} is one of:
5027
5028 @table @asis
5029 @item @var{string1} @code{==} @var{string2}
5030 the strings are equal
5031 @item @var{string1} @code{!=} @var{string2}
5032 the strings are not equal
5033 @item @var{string1} @code{<} @var{string2}
5034 @var{string1} is lexicographically less than @var{string2}
5035 @item @var{string1} @code{<=} @var{string2}
5036 @var{string1} is lexicographically less or equal than @var{string2}
5037 @item @var{string1} @code{>} @var{string2}
5038 @var{string1} is lexicographically greater than @var{string2}
5039 @item @var{string1} @code{>=} @var{string2}
5040 @var{string1} is lexicographically greater or equal than @var{string2}
5041 @item @var{integer1} @code{-eq} @var{integer2}
5042 @var{integer1} is equal to @var{integer2}
5043 @item @var{integer1} @code{-ge} @var{integer2}
5044 @var{integer1} is greater than or equal to @var{integer2}
5045 @item @var{integer1} @code{-gt} @var{integer2}
5046 @var{integer1} is greater than @var{integer2}
5047 @item @var{integer1} @code{-le} @var{integer2}
5048 @var{integer1} is less than or equal to @var{integer2}
5049 @item @var{integer1} @code{-lt} @var{integer2}
5050 @var{integer1} is less than @var{integer2}
5051 @item @var{integer1} @code{-ne} @var{integer2}
5052 @var{integer1} is not equal to @var{integer2}
5053 @item @var{prefix}@var{integer1} @code{-pgt} @var{prefix}@var{integer2}
5054 @var{integer1} is greater than @var{integer2} after stripping off common non-numeric @var{prefix}.
5055 @item @var{prefix}@var{integer1} @code{-plt} @var{prefix}@var{integer2}
5056 @var{integer1} is less than @var{integer2} after stripping off common non-numeric @var{prefix}.
5057 @item @var{file1} @code{-nt} @var{file2}
5058 @var{file1} is newer than @var{file2} (modification time). Optionally numeric @var{bias} may be directly appended to @code{-nt} in which case it is added to the first file modification time.
5059 @item @var{file1} @code{-ot} @var{file2}
5060 @var{file1} is older than @var{file2} (modification time). Optionally numeric @var{bias} may be directly appended to @code{-ot} in which case it is added to the first file modification time.
5061 @item @code{-d} @var{file}
5062 @var{file} exists and is a directory
5063 @item @code{-e} @var{file}
5064 @var{file} exists
5065 @item @code{-f} @var{file}
5066 @var{file} exists and is not a directory
5067 @item @code{-s} @var{file}
5068 @var{file} exists and has a size greater than zero
5069 @item @code{-n} @var{string}
5070 the length of @var{string} is nonzero
5071 @item @var{string}
5072 @var{string} is equivalent to @code{-n @var{string}}
5073 @item @code{-z} @var{string}
5074 the length of @var{string} is zero
5075 @item @code{(} @var{expression} @code{)}
5076 @var{expression} is true
5077 @item @code{!} @var{expression}
5078 @var{expression} is false
5079 @item @var{expression1} @code{-a} @var{expression2}
5080 both @var{expression1} and @var{expression2} are true
5081 @item @var{expression1} @var{expression2}
5082 both @var{expression1} and @var{expression2} are true. This syntax is not POSIX-compliant and is not recommended.
5083 @item @var{expression1} @code{-o} @var{expression2}
5084 either @var{expression1} or @var{expression2} is true
5085 @end table
5086 @end deffn
5087
5088
5089 @node true
5090 @subsection true
5091
5092 @deffn Command true
5093 Do nothing, successfully.  This is mainly useful in control constructs such
5094 as @code{if} and @code{while} (@pxref{Shell-like scripting}).
5095 @end deffn
5096
5097 @node trust
5098 @subsection trust
5099
5100 @deffn Command trust [@option{--skip-sig}] pubkey_file
5101 Read public key from @var{pubkey_file} and add it to GRUB's internal
5102 list of trusted public keys.  These keys are used to validate digital
5103 signatures when environment variable @code{check_signatures} is set to
5104 @code{enforce}.  Note that if @code{check_signatures} is set to
5105 @code{enforce} when @command{trust} executes, then @var{pubkey_file}
5106 must itself be properly signed.  The @option{--skip-sig} option can be
5107 used to disable signature-checking when reading @var{pubkey_file}
5108 itself. It is expected that @option{--skip-sig} is useful for testing
5109 and manual booting. @xref{Using digital signatures}, for more
5110 information.
5111 @end deffn
5112
5113
5114 @node unset
5115 @subsection unset
5116
5117 @deffn Command unset envvar
5118 Unset the environment variable @var{envvar}.
5119 @end deffn
5120
5121
5122 @node uppermem
5123 @subsection uppermem
5124
5125 This command is not yet implemented for GRUB 2, although it is planned.
5126
5127
5128 @ignore
5129 @node vbeinfo
5130 @subsection vbeinfo
5131
5132 @deffn Command vbeinfo [[WxH]xD]
5133 Alias for command @command{videoinfo} (@pxref{videoinfo}). It is available
5134 only on PC BIOS platforms.
5135 @end deffn
5136 @end ignore
5137
5138
5139 @node verify_detached
5140 @subsection verify_detached
5141
5142 @deffn Command verify_detached [@option{--skip-sig}] file signature_file [pubkey_file]
5143 Verifies a GPG-style detached signature, where the signed file is
5144 @var{file}, and the signature itself is in file @var{signature_file}.
5145 Optionally, a specific public key to use can be specified using
5146 @var{pubkey_file}.  When environment variable @code{check_signatures}
5147 is set to @code{enforce}, then @var{pubkey_file} must itself be
5148 properly signed by an already-trusted key.  An unsigned
5149 @var{pubkey_file} can be loaded by specifying @option{--skip-sig}.
5150 If @var{pubkey_file} is omitted, then public keys from GRUB's trusted keys
5151 (@pxref{list_trusted}, @pxref{trust}, and @pxref{distrust}) are
5152 tried.
5153
5154 Exit code @code{$?} is set to 0 if the signature validates
5155 successfully.  If validation fails, it is set to a non-zero value.
5156 @xref{Using digital signatures}, for more information.
5157 @end deffn
5158
5159 @node videoinfo
5160 @subsection videoinfo
5161
5162 @deffn Command videoinfo [[WxH]xD]
5163 List available video modes. If resolution is given, show only matching modes.
5164 @end deffn
5165
5166 @node xen_hypervisor
5167 @subsection xen_hypervisor
5168
5169 @deffn Command xen_hypervisor file  [arguments] @dots{}
5170 Load a Xen hypervisor binary from @var{file}. The rest of the line is passed
5171 verbatim as the @dfn{kernel command-line}. Any other binaries must be
5172 reloaded after using this command.
5173 This command is only available on AArch64 systems.
5174 @end deffn
5175
5176 @node xen_module
5177 @subsection xen_module
5178
5179 @deffn Command xen_module [--nounzip] file [arguments]
5180 Load a module for xen hypervisor at the booting process of xen.
5181 The rest of the line is passed verbatim as the module command line.
5182 Modules should be loaded in the following order:
5183  - dom0 kernel image
5184  - dom0 ramdisk if present
5185  - XSM policy if present
5186 This command is only available on AArch64 systems.
5187 @end deffn
5188
5189 @node Networking commands
5190 @section The list of networking commands
5191
5192 @menu
5193 * net_add_addr::                Add a network address
5194 * net_add_dns::                 Add a DNS server
5195 * net_add_route::               Add routing entry
5196 * net_bootp::                   Perform a bootp autoconfiguration
5197 * net_del_addr::                Remove IP address from interface
5198 * net_del_dns::                 Remove a DNS server
5199 * net_del_route::               Remove a route entry
5200 * net_get_dhcp_option::         Retrieve DHCP options
5201 * net_ipv6_autoconf::           Perform IPv6 autoconfiguration
5202 * net_ls_addr::                 List interfaces
5203 * net_ls_cards::                List network cards
5204 * net_ls_dns::                  List DNS servers
5205 * net_ls_routes::               List routing entries
5206 * net_nslookup::                Perform a DNS lookup
5207 @end menu
5208
5209
5210 @node net_add_addr
5211 @subsection net_add_addr
5212
5213 @deffn Command net_add_addr @var{interface} @var{card} @var{address}
5214 Configure additional network @var{interface} with @var{address} on a
5215 network @var{card}. @var{address} can be either IP in dotted decimal notation,
5216 or symbolic name which is resolved using DNS lookup. If successful, this command
5217 also adds local link routing entry to the default subnet of @var{address}
5218 with name @var{interface}@samp{:local} via @var{interface}.
5219 @end deffn
5220
5221
5222 @node net_add_dns
5223 @subsection net_add_dns
5224
5225 @deffn Command net_add_dns @var{server}
5226 Resolve @var{server} IP address and add to the list of DNS servers used during
5227 name lookup.
5228 @end deffn
5229
5230
5231 @node net_add_route
5232 @subsection net_add_route
5233
5234 @deffn Command net_add_route @var{shortname} @var{ip}[/@var{prefix}] [@var{interface} | @samp{gw} @var{gateway}]
5235 Add route to network with address @var{ip} as modified by @var{prefix} via
5236 either local @var{interface} or @var{gateway}. @var{prefix} is optional and
5237 defaults to 32 for IPv4 address and 128 for IPv6 address. Route is identified
5238 by @var{shortname} which can be used to remove it (@pxref{net_del_route}).
5239 @end deffn
5240
5241
5242 @node net_bootp
5243 @subsection net_bootp
5244
5245 @deffn Command net_bootp [@var{card}]
5246 Perform configuration of @var{card} using DHCP protocol. If no card name
5247 is specified, try to configure all existing cards. If configuration was
5248 successful, interface with name @var{card}@samp{:dhcp} and configured
5249 address is added to @var{card}.
5250 @comment If server provided gateway information in
5251 @comment DHCP ACK packet, it is added as route entry with the name @var{card}@samp{:dhcp:gw}.
5252 Additionally the following DHCP options are recognized and processed:
5253
5254 @table @samp
5255 @item 1 (Subnet Mask)
5256 Used to calculate network local routing entry for interface @var{card}@samp{:dhcp}.
5257 @item 3 (Router)
5258 Adds default route entry with the name @var{card}@samp{:dhcp:default} via gateway
5259 from DHCP option. Note that only option with single route is accepted.
5260 @item 6 (Domain Name Server)
5261 Adds all servers from option value to the list of servers used during name resolution.
5262 @item 12 (Host Name)
5263 Sets environment variable @samp{net_}@var{<card>}@samp{_dhcp_hostname}
5264 (@pxref{net_@var{<interface>}_hostname}) to the value of option.
5265 @item 15 (Domain Name)
5266 Sets environment variable @samp{net_}@var{<card>}@samp{_dhcp_domain}
5267 (@pxref{net_@var{<interface>}_domain}) to the value of option.
5268 @item 17 (Root Path)
5269 Sets environment variable @samp{net_}@var{<card>}@samp{_dhcp_rootpath}
5270 (@pxref{net_@var{<interface>}_rootpath}) to the value of option.
5271 @item 18 (Extensions Path)
5272 Sets environment variable @samp{net_}@var{<card>}@samp{_dhcp_extensionspath}
5273 (@pxref{net_@var{<interface>}_extensionspath}) to the value of option.
5274 @end table
5275
5276 @end deffn
5277
5278
5279 @node net_del_addr
5280 @subsection net_del_addr
5281
5282 @deffn Command net_del_addr @var{interface}
5283 Remove configured @var{interface} with associated address.
5284 @end deffn
5285
5286
5287 @node net_del_dns
5288 @subsection net_del_dns
5289
5290 @deffn Command net_del_dns @var{address}
5291 Remove @var{address} from list of servers used during name lookup.
5292 @end deffn
5293
5294
5295 @node net_del_route
5296 @subsection net_del_route
5297
5298 @deffn Command net_del_route @var{shortname}
5299 Remove route entry identified by @var{shortname}.
5300 @end deffn
5301
5302
5303 @node net_get_dhcp_option
5304 @subsection net_get_dhcp_option
5305
5306 @deffn Command net_get_dhcp_option @var{var} @var{interface} @var{number} @var{type}
5307 Request DHCP option @var{number} of @var{type} via @var{interface}. @var{type}
5308 can be one of @samp{string}, @samp{number} or @samp{hex}. If option is found,
5309 assign its value to variable @var{var}. Values of types @samp{number} and @samp{hex}
5310 are converted to string representation.
5311 @end deffn
5312
5313
5314 @node net_ipv6_autoconf
5315 @subsection net_ipv6_autoconf
5316
5317 @deffn Command net_ipv6_autoconf [@var{card}]
5318 Perform IPv6 autoconfiguration by adding to the @var{card} interface with name
5319 @var{card}@samp{:link} and link local MAC-based address. If no card is specified,
5320 perform autoconfiguration for all existing cards.
5321 @end deffn
5322
5323
5324 @node net_ls_addr
5325 @subsection net_ls_addr
5326
5327 @deffn Command net_ls_addr
5328 List all configured interfaces with their MAC and IP addresses.
5329 @end deffn
5330
5331
5332 @node net_ls_cards
5333 @subsection net_ls_cards
5334
5335 @deffn Command net_ls_cards
5336 List all detected network cards with their MAC address.
5337 @end deffn
5338
5339
5340 @node net_ls_dns
5341 @subsection net_ls_dns
5342
5343 @deffn Command net_ls_dns
5344 List addresses of DNS servers used during name lookup.
5345 @end deffn
5346
5347
5348 @node net_ls_routes
5349 @subsection net_ls_routes
5350
5351 @deffn Command net_ls_routes
5352 List routing entries.
5353 @end deffn
5354
5355
5356 @node net_nslookup
5357 @subsection net_nslookup
5358
5359 @deffn Command net_nslookup @var{name} [@var{server}]
5360 Resolve address of @var{name} using DNS server @var{server}. If no server
5361 is given, use default list of servers.
5362 @end deffn
5363
5364
5365 @node Internationalisation
5366 @chapter Internationalisation
5367
5368 @section Charset
5369 GRUB uses UTF-8 internally other than in rendering where some GRUB-specific
5370 appropriate representation is used. All text files (including config) are
5371 assumed to be encoded in UTF-8.
5372
5373 @section Filesystems
5374 NTFS, JFS, UDF, HFS+, exFAT, long filenames in FAT, Joliet part of
5375 ISO9660 are treated as UTF-16 as per specification. AFS and BFS are read
5376 as UTF-8, again according to specification. BtrFS, cpio, tar, squash4, minix,
5377 minix2, minix3, ROMFS, ReiserFS, XFS, ext2, ext3, ext4, FAT (short names),
5378 RockRidge part of ISO9660, nilfs2, UFS1, UFS2 and ZFS are assumed
5379 to be UTF-8. This might be false on systems configured with legacy charset
5380 but as long as the charset used is superset of ASCII you should be able to
5381 access ASCII-named files. And it's recommended to configure your system to use
5382 UTF-8 to access the filesystem, convmv may help with migration. ISO9660 (plain)
5383 filenames are specified as being ASCII or being described with unspecified
5384 escape sequences. GRUB assumes that the ISO9660 names are UTF-8 (since
5385 any ASCII is valid UTF-8). There are some old CD-ROMs which use CP437
5386 in non-compliant way. You're still able to access files with names containing
5387 only ASCII characters on such filesystems though. You're also able to access
5388 any file if the filesystem contains valid Joliet (UTF-16) or RockRidge (UTF-8).
5389 AFFS, SFS and HFS never use unicode and GRUB assumes them to be in Latin1,
5390 Latin1 and MacRoman respectively. GRUB handles filesystem case-insensitivity
5391 however no attempt is performed at case conversion of international characters
5392 so e.g. a file named lowercase greek alpha is treated as different from
5393 the one named as uppercase alpha. The filesystems in questions are
5394 NTFS (except POSIX namespace), HFS+ (configurable at mkfs time, default
5395 insensitive), SFS (configurable at mkfs time, default insensitive),
5396 JFS (configurable at mkfs time, default sensitive), HFS, AFFS, FAT, exFAT
5397 and ZFS (configurable on per-subvolume basis by property ``casesensitivity'',
5398 default sensitive). On ZFS subvolumes marked as case insensitive files
5399 containing lowercase international characters are inaccessible.
5400 Also like all supported filesystems except HFS+ and ZFS (configurable on
5401 per-subvolume basis by property ``normalization'', default none) GRUB makes
5402 no attempt at check of canonical equivalence so a file name u-diaresis is
5403 treated as distinct from u+combining diaresis. This however means that in
5404 order to access file on HFS+ its name must be specified in normalisation form D.
5405 On normalized ZFS subvolumes filenames out of normalisation are inaccessible.
5406
5407 @section Output terminal
5408 Firmware output console ``console'' on ARC and IEEE1275 are limited to ASCII.
5409
5410 BIOS firmware console and VGA text are limited to ASCII and some pseudographics.
5411
5412 None of above mentioned is appropriate for displaying international and any
5413 unsupported character is replaced with question mark except pseudographics
5414 which we attempt to approximate with ASCII.
5415
5416 EFI console on the other hand nominally supports UTF-16 but actual language
5417 coverage depends on firmware and may be very limited.
5418
5419 The encoding used on serial can be chosen with @command{terminfo} as
5420 either ASCII, UTF-8 or ``visual UTF-8''. Last one is against the specification
5421 but results in correct rendering of right-to-left on some readers which don't
5422 have own bidi implementation.
5423
5424 On emu GRUB checks if charset is UTF-8 and uses it if so and uses ASCII
5425 otherwise.
5426
5427 When using gfxterm or gfxmenu GRUB itself is responsible for rendering the
5428 text. In this case GRUB is limited by loaded fonts. If fonts contain all
5429 required characters then bidirectional text, cursive variants and combining
5430 marks other than enclosing, half (e.g. left half tilde or combining overline)
5431 and double ones. Ligatures aren't supported though. This should cover European,
5432 Middle Eastern (if you don't mind lack of lam-alif ligature in Arabic) and
5433 East Asian scripts. Notable unsupported scripts are Brahmic family and
5434 derived as well as Mongolian, Tifinagh, Korean Jamo (precomposed characters
5435 have no problem) and tonal writing (2e5-2e9). GRUB also ignores deprecated
5436 (as specified in Unicode) characters (e.g. tags). GRUB also doesn't handle so
5437 called ``annotation characters'' If you can complete either of
5438 two lists or, better, propose a patch to improve rendering, please contact
5439 developer team.
5440
5441 @section Input terminal
5442 Firmware console on BIOS, IEEE1275 and ARC doesn't allow you to enter non-ASCII
5443 characters. EFI specification allows for such but author is unaware of any
5444 actual implementations. Serial input is currently limited for latin1 (unlikely
5445 to change). Own keyboard implementations (at_keyboard and usb_keyboard) 
5446 supports any key but work on one-char-per-keystroke.
5447 So no dead keys or advanced input method. Also there is no keymap change hotkey.
5448 In practice it makes difficult to enter any text using non-Latin alphabet.
5449 Moreover all current input consumers are limited to ASCII.
5450
5451 @section Gettext
5452 GRUB supports being translated. For this you need to have language *.mo files in $prefix/locale, load gettext module and set ``lang'' variable.
5453
5454 @section Regexp
5455 Regexps work on unicode characters, however no attempt at checking cannonical
5456 equivalence has been made. Moreover the classes like [:alpha:] match only
5457 ASCII subset.
5458
5459 @section Other
5460 Currently GRUB always uses YEAR-MONTH-DAY HOUR:MINUTE:SECOND [WEEKDAY] 24-hour
5461 datetime format but weekdays are translated.
5462 GRUB always uses the decimal number format with [0-9] as digits and . as
5463 descimal separator and no group separator.
5464 IEEE1275 aliases are matched case-insensitively except non-ASCII which is
5465 matched as binary. Similar behaviour is for matching OSBundleRequired.
5466 Since IEEE1275 aliases and OSBundleRequired don't contain any non-ASCII it
5467 should never be a problem in practice.
5468 Case-sensitive identifiers are matched as raw strings, no canonical
5469 equivalence check is performed. Case-insenstive identifiers are matched
5470 as RAW but additionally [a-z] is equivalent to [A-Z]. GRUB-defined
5471 identifiers use only ASCII and so should user-defined ones.
5472 Identifiers containing non-ASCII may work but aren't supported.
5473 Only the ASCII space characters (space U+0020, tab U+000b, CR U+000d and
5474 LF U+000a) are recognised. Other unicode space characters aren't a valid
5475 field separator.
5476 @command{test} (@pxref{test}) tests <, >, <=, >=, -pgt and -plt compare the strings in the
5477 lexicographical order of unicode codepoints, replicating the behaviour of
5478 test from coreutils.
5479 environment variables and commands are listed in the same order.
5480
5481 @node Security
5482 @chapter Security
5483
5484 @menu
5485 * Authentication and authorisation:: Users and access control
5486 * Using digital signatures::         Booting digitally signed code
5487 @end menu
5488
5489 @node Authentication and authorisation
5490 @section Authentication and authorisation in GRUB
5491
5492 By default, the boot loader interface is accessible to anyone with physical
5493 access to the console: anyone can select and edit any menu entry, and anyone
5494 can get direct access to a GRUB shell prompt.  For most systems, this is
5495 reasonable since anyone with direct physical access has a variety of other
5496 ways to gain full access, and requiring authentication at the boot loader
5497 level would only serve to make it difficult to recover broken systems.
5498
5499 However, in some environments, such as kiosks, it may be appropriate to lock
5500 down the boot loader to require authentication before performing certain
5501 operations.
5502
5503 The @samp{password} (@pxref{password}) and @samp{password_pbkdf2}
5504 (@pxref{password_pbkdf2}) commands can be used to define users, each of
5505 which has an associated password.  @samp{password} sets the password in
5506 plain text, requiring @file{grub.cfg} to be secure; @samp{password_pbkdf2}
5507 sets the password hashed using the Password-Based Key Derivation Function
5508 (RFC 2898), requiring the use of @command{grub-mkpasswd-pbkdf2}
5509 (@pxref{Invoking grub-mkpasswd-pbkdf2}) to generate password hashes.
5510
5511 In order to enable authentication support, the @samp{superusers} environment
5512 variable must be set to a list of usernames, separated by any of spaces,
5513 commas, semicolons, pipes, or ampersands.  Superusers are permitted to use
5514 the GRUB command line, edit menu entries, and execute any menu entry.  If
5515 @samp{superusers} is set, then use of the command line and editing of menu
5516 entries are automatically restricted to superusers. Setting @samp{superusers}
5517 to empty string effectively disables both access to CLI and editing of menu
5518 entries.
5519
5520 Other users may be allowed to execute specific menu entries by giving a list of
5521 usernames (as above) using the @option{--users} option to the
5522 @samp{menuentry} command (@pxref{menuentry}).  If the @option{--unrestricted}
5523 option is used for a menu entry, then that entry is unrestricted.
5524 If the @option{--users} option is not used for a menu entry, then that
5525 only superusers are able to use it.
5526
5527 Putting this together, a typical @file{grub.cfg} fragment might look like
5528 this:
5529
5530 @example
5531 @group
5532 set superusers="root"
5533 password_pbkdf2 root grub.pbkdf2.sha512.10000.biglongstring
5534 password user1 insecure
5535
5536 menuentry "May be run by any user" --unrestricted @{
5537         set root=(hd0,1)
5538         linux /vmlinuz
5539 @}
5540
5541 menuentry "Superusers only" --users "" @{
5542         set root=(hd0,1)
5543         linux /vmlinuz single
5544 @}
5545
5546 menuentry "May be run by user1 or a superuser" --users user1 @{
5547         set root=(hd0,2)
5548         chainloader +1
5549 @}
5550 @end group
5551 @end example
5552
5553 The @command{grub-mkconfig} program does not yet have built-in support for
5554 generating configuration files with authentication.  You can use
5555 @file{/etc/grub.d/40_custom} to add simple superuser authentication, by
5556 adding @kbd{set superusers=} and @kbd{password} or @kbd{password_pbkdf2}
5557 commands.
5558
5559 @node Using digital signatures
5560 @section Using digital signatures in GRUB
5561
5562 GRUB's @file{core.img} can optionally provide enforcement that all files
5563 subsequently read from disk are covered by a valid digital signature.
5564 This document does @strong{not} cover how to ensure that your
5565 platform's firmware (e.g., Coreboot) validates @file{core.img}.
5566
5567 If environment variable @code{check_signatures}
5568 (@pxref{check_signatures}) is set to @code{enforce}, then every
5569 attempt by the GRUB @file{core.img} to load another file @file{foo}
5570 implicitly invokes @code{verify_detached foo foo.sig}
5571 (@pxref{verify_detached}).  @code{foo.sig} must contain a valid
5572 digital signature over the contents of @code{foo}, which can be
5573 verified with a public key currently trusted by GRUB
5574 (@pxref{list_trusted}, @pxref{trust}, and @pxref{distrust}).  If
5575 validation fails, then file @file{foo} cannot be opened.  This failure
5576 may halt or otherwise impact the boot process.
5577
5578 @comment Unfortunately --pubkey is not yet supported by grub-install,
5579 @comment but we should not bring up internal detail grub-mkimage here
5580 @comment in the user guide (as opposed to developer's manual).
5581
5582 @comment An initial trusted public key can be embedded within the GRUB
5583 @comment @file{core.img} using the @code{--pubkey} option to
5584 @comment @command{grub-mkimage} (@pxref{Invoking grub-install}).  Presently it
5585 @comment is necessary to write a custom wrapper around @command{grub-mkimage}
5586 @comment using the @code{--grub-mkimage} flag to @command{grub-install}.
5587
5588 GRUB uses GPG-style detached signatures (meaning that a file
5589 @file{foo.sig} will be produced when file @file{foo} is signed), and
5590 currently supports the DSA and RSA signing algorithms. A signing key
5591 can be generated as follows:
5592
5593 @example
5594 gpg --gen-key
5595 @end example
5596
5597 An individual file can be signed as follows:
5598
5599 @example
5600 gpg --detach-sign /path/to/file
5601 @end example
5602
5603 For successful validation of all of GRUB's subcomponents and the
5604 loaded OS kernel, they must all be signed.  One way to accomplish this
5605 is the following (after having already produced the desired
5606 @file{grub.cfg} file, e.g., by running @command{grub-mkconfig}
5607 (@pxref{Invoking grub-mkconfig}):
5608
5609 @example
5610 @group
5611 # Edit /dev/shm/passphrase.txt to contain your signing key's passphrase
5612 for i in `find /boot -name "*.cfg" -or -name "*.lst" -or \
5613   -name "*.mod" -or -name "vmlinuz*" -or -name "initrd*" -or \
5614   -name "grubenv"`;
5615 do
5616   gpg --batch --detach-sign --passphrase-fd 0 $i < \
5617     /dev/shm/passphrase.txt
5618 done
5619 shred /dev/shm/passphrase.txt
5620 @end group
5621 @end example
5622
5623 See also: @ref{check_signatures}, @ref{verify_detached}, @ref{trust},
5624 @ref{list_trusted}, @ref{distrust}, @ref{load_env}, @ref{save_env}.
5625
5626 Note that internally signature enforcement is controlled by setting
5627 the environment variable @code{check_signatures} equal to
5628 @code{enforce}.  Passing one or more @code{--pubkey} options to
5629 @command{grub-mkimage} implicitly defines @code{check_signatures}
5630 equal to @code{enforce} in @file{core.img} prior to processing any
5631 configuration files.
5632
5633 Note that signature checking does @strong{not} prevent an attacker
5634 with (serial, physical, ...) console access from dropping manually to
5635 the GRUB console and executing:
5636
5637 @example
5638 set check_signatures=no
5639 @end example
5640
5641 To prevent this, password-protection (@pxref{Authentication and
5642 authorisation}) is essential.  Note that even with GRUB password
5643 protection, GRUB itself cannot prevent someone with physical access to
5644 the machine from altering that machine's firmware (e.g., Coreboot
5645 or BIOS) configuration to cause the machine to boot from a different
5646 (attacker-controlled) device.  GRUB is at best only one link in a
5647 secure boot chain.
5648
5649 @node Platform limitations
5650 @chapter Platform limitations
5651
5652 GRUB2 is designed to be portable and is actually ported across platforms. We
5653 try to keep all platforms at the level. Unfortunately some platforms are better
5654 supported than others. This is detailed in current and 2 following sections.
5655
5656 ARC platform is unable to change datetime (firmware doesn't seem to provide a
5657 function for it).
5658 EMU has similar limitation.
5659
5660 On EMU platform no serial port is available.
5661
5662 Console charset refers only to firmware-assisted console. gfxterm is always
5663 Unicode (see Internationalisation section for its limitations). Serial is
5664 configurable to UTF-8 or ASCII (see Internationalisation). In case of qemu
5665 and coreboot ports the refered console is vga_text. Loongson always uses
5666 gfxterm.
5667
5668 Most limited one is ASCII. CP437 provides additionally pseudographics.
5669 GRUB2 doesn't use any language characters from CP437 as often CP437 is replaced
5670 by national encoding compatible only in pseudographics.
5671 Unicode is the most versatile charset which supports many languages. However
5672 the actual console may be much more limited depending on firmware
5673
5674 On BIOS network is supported only if the image is loaded through network.
5675 On sparc64 GRUB is unable to determine which server it was booted from.
5676
5677 Direct ATA/AHCI support allows to circumvent various firmware limitations but
5678 isn't needed for normal operation except on baremetal ports.
5679
5680 AT keyboard support allows keyboard layout remapping and support for keys not
5681 available through firmware. It isn't needed for normal operation except
5682 baremetal ports.
5683
5684 Speaker allows morse and spkmodem communication.
5685
5686 USB support provides benefits similar to ATA (for USB disks) or AT (for USB
5687 keyboards). In addition it allows USBserial.
5688
5689 Chainloading refers to the ability to load another bootloader through the same protocol
5690
5691 Hints allow faster disk discovery by already knowing in advance which is the disk in
5692 question. On some platforms hints are correct unless you move the disk between boots.
5693 On other platforms it's just an educated guess.
5694 Note that hint failure results in just reduced performance, not a failure
5695
5696 BadRAM is the ability to mark some of the RAM as ``bad''. Note: due to protocol
5697 limitations mips-loongson (with Linux protocol)
5698 and mips-qemu_mips can use only memory up to first hole.
5699
5700 Bootlocation is ability of GRUB to automatically detect where it boots from.
5701 ``disk'' means the detection is limited to detecting the disk with partition
5702 being discovered on install time. ``partition'' means that disk and partiton
5703 can be automatically discovered. ``file'' means that boot image file name as
5704 well as disk and partition can be discovered. For consistency default install ignores
5705 partition and relies solely on disk detection. If no bootlocation discovery is available
5706 or boot and grub-root disks are different, UUID is used instead. On ARC if no device
5707 to install to is specified, UUID is used instead as well.
5708
5709
5710 @multitable @columnfractions .20 .20 .20 .20 .20
5711 @item                    @tab BIOS    @tab Coreboot @tab Multiboot    @tab Qemu 
5712 @item video              @tab yes     @tab yes      @tab yes          @tab yes
5713 @item console charset    @tab CP437   @tab CP437    @tab CP437        @tab CP437
5714 @item network            @tab yes (*) @tab no       @tab no           @tab no
5715 @item ATA/AHCI           @tab yes     @tab yes      @tab yes          @tab yes
5716 @item AT keyboard        @tab yes     @tab yes      @tab yes          @tab yes
5717 @item Speaker            @tab yes     @tab yes      @tab yes          @tab yes
5718 @item USB                @tab yes     @tab yes      @tab yes          @tab yes
5719 @item chainloader        @tab local   @tab yes      @tab yes          @tab no
5720 @item cpuid              @tab partial @tab partial  @tab partial      @tab partial
5721 @item hints              @tab guess   @tab guess    @tab guess        @tab guess
5722 @item PCI                @tab yes     @tab yes      @tab yes          @tab yes
5723 @item badram             @tab yes     @tab yes      @tab yes          @tab yes
5724 @item compression        @tab always  @tab pointless @tab no           @tab no
5725 @item exit               @tab yes     @tab no       @tab no           @tab no
5726 @item bootlocation       @tab disk    @tab no       @tab no           @tab no
5727 @end multitable
5728
5729 @multitable @columnfractions .20 .20 .20 .20 .20
5730 @item                    @tab ia32 EFI    @tab amd64 EFI @tab ia32 IEEE1275 @tab Itanium
5731 @item video              @tab yes         @tab yes       @tab no            @tab no
5732 @item console charset    @tab Unicode     @tab Unicode   @tab ASCII         @tab Unicode
5733 @item network            @tab yes         @tab yes       @tab yes           @tab yes
5734 @item ATA/AHCI           @tab yes         @tab yes       @tab yes           @tab no
5735 @item AT keyboard        @tab yes         @tab yes       @tab yes           @tab no
5736 @item Speaker            @tab yes         @tab yes       @tab yes           @tab no
5737 @item USB                @tab yes         @tab yes       @tab yes           @tab no
5738 @item chainloader        @tab local       @tab local     @tab no            @tab local
5739 @item cpuid              @tab partial     @tab partial   @tab partial       @tab no
5740 @item hints              @tab guess       @tab guess     @tab good          @tab guess
5741 @item PCI                @tab yes         @tab yes       @tab yes           @tab no
5742 @item badram             @tab yes         @tab yes       @tab no            @tab yes
5743 @item compression        @tab no          @tab no        @tab no            @tab no
5744 @item exit               @tab yes         @tab yes       @tab yes           @tab yes
5745 @item bootlocation       @tab file        @tab file      @tab file, ignored @tab file
5746 @end multitable
5747
5748 @multitable @columnfractions .20 .20 .20 .20 .20
5749 @item                    @tab Loongson    @tab sparc64 @tab Powerpc @tab ARC
5750 @item video              @tab yes         @tab no      @tab yes     @tab no
5751 @item console charset    @tab N/A         @tab ASCII   @tab ASCII   @tab ASCII
5752 @item network            @tab no          @tab yes (*) @tab yes     @tab no
5753 @item ATA/AHCI           @tab yes         @tab no      @tab no      @tab no
5754 @item AT keyboard        @tab yes         @tab no      @tab no      @tab no
5755 @item Speaker            @tab no          @tab no      @tab no      @tab no
5756 @item USB                @tab yes         @tab no      @tab no      @tab no
5757 @item chainloader        @tab yes         @tab no      @tab no      @tab no
5758 @item cpuid              @tab no          @tab no      @tab no      @tab no
5759 @item hints              @tab good        @tab good    @tab good    @tab no
5760 @item PCI                @tab yes         @tab no      @tab no      @tab no
5761 @item badram             @tab yes (*)     @tab no      @tab no      @tab no
5762 @item compression        @tab configurable @tab no     @tab no      @tab configurable
5763 @item exit               @tab no          @tab yes     @tab yes     @tab yes
5764 @item bootlocation       @tab no          @tab partition @tab file  @tab file (*)
5765 @end multitable
5766
5767 @multitable @columnfractions .20 .20 .20 .20 .20
5768 @item                    @tab MIPS qemu @tab emu         @tab xen
5769 @item video              @tab no        @tab yes         @tab no
5770 @item console charset    @tab CP437     @tab Unicode (*) @tab ASCII
5771 @item network            @tab no        @tab yes         @tab no
5772 @item ATA/AHCI           @tab yes       @tab no          @tab no
5773 @item AT keyboard        @tab yes       @tab no          @tab no
5774 @item Speaker            @tab no        @tab no          @tab no
5775 @item USB                @tab N/A       @tab yes         @tab no
5776 @item chainloader        @tab yes       @tab no          @tab yes
5777 @item cpuid              @tab no        @tab no          @tab yes
5778 @item hints              @tab guess     @tab no          @tab no
5779 @item PCI                @tab no        @tab no          @tab no
5780 @item badram             @tab yes (*)   @tab no          @tab no
5781 @item compression        @tab configurable @tab no       @tab no
5782 @item exit               @tab no        @tab yes         @tab no
5783 @item bootlocation       @tab no        @tab file        @tab no
5784 @end multitable
5785
5786 @node Platform-specific operations
5787 @chapter Outline
5788
5789 Some platforms have features which allows to implement
5790 some commands useless or not implementable on others.
5791
5792 Quick summary:
5793
5794 Information retrieval:
5795
5796 @itemize
5797 @item mipsel-loongson: lsspd
5798 @item mips-arc: lsdev
5799 @item efi: lsefisystab, lssal, lsefimmap, lsefi
5800 @item i386-pc: lsapm
5801 @item i386-coreboot: lscoreboot, coreboot_boottime, cbmemc
5802 @item acpi-enabled (i386-pc, i386-coreboot, i386-multiboot, *-efi): lsacpi
5803 @end itemize
5804
5805 Workarounds for platform-specific issues:
5806 @itemize
5807 @item i386-efi/x86_64-efi: loadbios, fakebios, fix_video
5808 @item acpi-enabled (i386-pc, i386-coreboot, i386-multiboot, *-efi):
5809     acpi (override ACPI tables)
5810 @item i386-pc: drivemap
5811 @item i386-pc: sendkey
5812 @end itemize
5813
5814 Advanced operations for power users:
5815 @itemize
5816 @item x86: iorw (direct access to I/O ports)
5817 @end itemize
5818
5819 Miscelaneous:
5820 @itemize
5821 @item cmos (x86-*, ieee1275, mips-qemu_mips, mips-loongson): cmostest
5822     (used on some laptops to check for special power-on key), cmosclean
5823 @item i386-pc: play
5824 @end itemize
5825
5826 @node Supported kernels
5827 @chapter Supported boot targets
5828
5829 X86 support is summarised in the following table. ``Yes'' means that the kernel works on the given platform, ``crashes'' means an early kernel crash which we hope will be fixed by concerned kernel developers. ``no'' means GRUB doesn't load the given kernel on a given platform. ``headless'' means that the kernel works but lacks console drivers (you can still use serial or network console).  In case of ``no'' and ``crashes'' the reason is given in footnote.
5830 @multitable @columnfractions .50 .22 .22
5831 @item                                @tab BIOS    @tab Coreboot
5832 @item BIOS chainloading              @tab yes     @tab no (1)
5833 @item NTLDR                          @tab yes     @tab no (1)
5834 @item Plan9                          @tab yes     @tab no (1)
5835 @item Freedos                        @tab yes     @tab no (1)
5836 @item FreeBSD bootloader             @tab yes     @tab crashes (1)
5837 @item 32-bit kFreeBSD                @tab yes     @tab crashes (5)
5838 @item 64-bit kFreeBSD                @tab yes     @tab crashes (5)
5839 @item 32-bit kNetBSD                 @tab yes     @tab crashes (1)
5840 @item 64-bit kNetBSD                 @tab yes     @tab crashes
5841 @item 32-bit kOpenBSD                @tab yes     @tab yes
5842 @item 64-bit kOpenBSD                @tab yes     @tab yes
5843 @item Multiboot                      @tab yes     @tab yes
5844 @item Multiboot2                     @tab yes     @tab yes
5845 @item 32-bit Linux (legacy protocol) @tab yes     @tab no (1)
5846 @item 64-bit Linux (legacy protocol) @tab yes     @tab no (1)
5847 @item 32-bit Linux (modern protocol) @tab yes     @tab yes
5848 @item 64-bit Linux (modern protocol) @tab yes     @tab yes
5849 @item 32-bit XNU                     @tab yes     @tab ?
5850 @item 64-bit XNU                     @tab yes     @tab ?
5851 @item 32-bit EFI chainloader         @tab no (2)  @tab no (2)
5852 @item 64-bit EFI chainloader         @tab no (2)  @tab no (2)
5853 @item Appleloader                    @tab no (2)  @tab no (2)
5854 @end multitable
5855
5856 @multitable @columnfractions .50 .22 .22
5857 @item                                @tab Multiboot    @tab Qemu 
5858 @item BIOS chainloading              @tab no (1)       @tab no (1)
5859 @item NTLDR                          @tab no (1)       @tab no (1)
5860 @item Plan9                          @tab no (1)       @tab no (1)
5861 @item FreeDOS                        @tab no (1)       @tab no (1)
5862 @item FreeBSD bootloader             @tab crashes (1)  @tab crashes (1)
5863 @item 32-bit kFreeBSD                @tab crashes (5)  @tab crashes (5)
5864 @item 64-bit kFreeBSD                @tab crashes (5)  @tab crashes (5)
5865 @item 32-bit kNetBSD                 @tab crashes (1)  @tab crashes (1)  
5866 @item 64-bit kNetBSD                 @tab yes          @tab yes
5867 @item 32-bit kOpenBSD                @tab yes          @tab yes
5868 @item 64-bit kOpenBSD                @tab yes          @tab yes
5869 @item Multiboot                      @tab yes          @tab yes
5870 @item Multiboot2                     @tab yes          @tab yes
5871 @item 32-bit Linux (legacy protocol) @tab no (1)       @tab no (1)
5872 @item 64-bit Linux (legacy protocol) @tab no (1)       @tab no (1)
5873 @item 32-bit Linux (modern protocol) @tab yes          @tab yes
5874 @item 64-bit Linux (modern protocol) @tab yes          @tab yes
5875 @item 32-bit XNU                     @tab ?            @tab ?
5876 @item 64-bit XNU                     @tab ?            @tab ?
5877 @item 32-bit EFI chainloader         @tab no (2)       @tab no (2)
5878 @item 64-bit EFI chainloader         @tab no (2)       @tab no (2)
5879 @item Appleloader                    @tab no (2)       @tab no (2)
5880 @end multitable
5881
5882 @multitable @columnfractions .50 .22 .22
5883 @item                                @tab ia32 EFI      @tab amd64 EFI
5884 @item BIOS chainloading              @tab no (1)        @tab no (1)
5885 @item NTLDR                          @tab no (1)        @tab no (1)
5886 @item Plan9                          @tab no (1)        @tab no (1)
5887 @item FreeDOS                        @tab no (1)        @tab no (1)
5888 @item FreeBSD bootloader             @tab crashes (1)   @tab crashes (1)
5889 @item 32-bit kFreeBSD                @tab headless      @tab headless
5890 @item 64-bit kFreeBSD                @tab headless      @tab headless
5891 @item 32-bit kNetBSD                 @tab crashes (1)   @tab crashes (1)
5892 @item 64-bit kNetBSD                 @tab yes           @tab yes
5893 @item 32-bit kOpenBSD                @tab headless      @tab headless
5894 @item 64-bit kOpenBSD                @tab headless      @tab headless
5895 @item Multiboot                      @tab yes           @tab yes
5896 @item Multiboot2                     @tab yes           @tab yes
5897 @item 32-bit Linux (legacy protocol) @tab no (1)        @tab no (1)
5898 @item 64-bit Linux (legacy protocol) @tab no (1)        @tab no (1)
5899 @item 32-bit Linux (modern protocol) @tab yes           @tab yes
5900 @item 64-bit Linux (modern protocol) @tab yes           @tab yes
5901 @item 32-bit XNU                     @tab yes           @tab yes
5902 @item 64-bit XNU                     @tab yes (4)       @tab yes
5903 @item 32-bit EFI chainloader         @tab yes           @tab no (3)
5904 @item 64-bit EFI chainloader         @tab no (3)        @tab yes
5905 @item Appleloader                    @tab yes           @tab yes
5906 @end multitable
5907
5908 @multitable @columnfractions .50 .22 .22
5909 @item                                @tab ia32 IEEE1275
5910 @item BIOS chainloading              @tab no (1)
5911 @item NTLDR                          @tab no (1)
5912 @item Plan9                          @tab no (1)
5913 @item FreeDOS                        @tab no (1)
5914 @item FreeBSD bootloader             @tab crashes (1)
5915 @item 32-bit kFreeBSD                @tab crashes (5)
5916 @item 64-bit kFreeBSD                @tab crashes (5)
5917 @item 32-bit kNetBSD                 @tab crashes (1)
5918 @item 64-bit kNetBSD                 @tab ?
5919 @item 32-bit kOpenBSD                @tab ?
5920 @item 64-bit kOpenBSD                @tab ?
5921 @item Multiboot                      @tab ?
5922 @item Multiboot2                     @tab ?
5923 @item 32-bit Linux (legacy protocol) @tab no (1)
5924 @item 64-bit Linux (legacy protocol) @tab no (1)
5925 @item 32-bit Linux (modern protocol) @tab ?
5926 @item 64-bit Linux (modern protocol) @tab ?
5927 @item 32-bit XNU                     @tab ?
5928 @item 64-bit XNU                     @tab ?
5929 @item 32-bit EFI chainloader         @tab no (2)
5930 @item 64-bit EFI chainloader         @tab no (2)
5931 @item Appleloader                    @tab no (2)
5932 @end multitable
5933
5934 @enumerate
5935 @item Requires BIOS
5936 @item EFI only
5937 @item 32-bit and 64-bit EFI have different structures and work in different CPU modes so it's not possible to chainload 32-bit bootloader on 64-bit platform and vice-versa
5938 @item Some modules may need to be disabled
5939 @item Requires ACPI
5940 @end enumerate
5941
5942 PowerPC, IA64 and Sparc64 ports support only Linux. MIPS port supports Linux
5943 and multiboot2.
5944
5945 @section Boot tests
5946
5947 As you have seen in previous chapter the support matrix is pretty big and some of the configurations are only rarely used. To ensure the quality bootchecks are available for all x86 targets except EFI chainloader, Appleloader and XNU. All x86 platforms have bootcheck facility except ieee1275. Multiboot, multiboot2, BIOS chainloader, ntldr and freebsd-bootloader boot targets are tested only with a fake kernel images. Only Linux is tested among the payloads using Linux protocols.
5948
5949 Following variables must be defined:
5950
5951 @multitable  @columnfractions .30 .65
5952 @item GRUB_PAYLOADS_DIR @tab directory containing the required kernels
5953 @item GRUB_CBFSTOOL @tab cbfstool from Coreboot package (for coreboot platform only)
5954 @item GRUB_COREBOOT_ROM @tab empty Coreboot ROM
5955 @item GRUB_QEMU_OPTS @tab additional options to be supplied to QEMU
5956 @end multitable
5957
5958 Required files are:
5959
5960 @multitable  @columnfractions .40 .55
5961 @item kfreebsd_env.i386 @tab 32-bit kFreeBSD device hints
5962 @item kfreebsd.i386 @tab 32-bit FreeBSD kernel image
5963 @item kfreebsd.x86_64, kfreebsd_env.x86_64 @tab same from 64-bit kFreeBSD
5964 @item knetbsd.i386 @tab 32-bit NetBSD kernel image
5965 @item knetbsd.miniroot.i386 @tab 32-bit kNetBSD miniroot.kmod.
5966 @item knetbsd.x86_64, knetbsd.miniroot.x86_64  @tab same from 64-bit kNetBSD
5967 @item kopenbsd.i386 @tab 32-bit OpenBSD kernel bsd.rd image
5968 @item kopenbsd.x86_64 @tab same from 64-bit kOpenBSD
5969 @item linux.i386 @tab 32-bit Linux
5970 @item linux.x86_64 @tab 64-bit Linux
5971 @end multitable
5972
5973 @node Troubleshooting
5974 @chapter Error messages produced by GRUB
5975
5976 @menu
5977 * GRUB only offers a rescue shell::
5978 @end menu
5979
5980
5981 @node GRUB only offers a rescue shell
5982 @section GRUB only offers a rescue shell
5983
5984 GRUB's normal start-up procedure involves setting the @samp{prefix}
5985 environment variable to a value set in the core image by
5986 @command{grub-install}, setting the @samp{root} variable to match, loading
5987 the @samp{normal} module from the prefix, and running the @samp{normal}
5988 command (@pxref{normal}).  This command is responsible for reading
5989 @file{/boot/grub/grub.cfg}, running the menu, and doing all the useful
5990 things GRUB is supposed to do.
5991
5992 If, instead, you only get a rescue shell, this usually means that GRUB
5993 failed to load the @samp{normal} module for some reason.  It may be possible
5994 to work around this temporarily: for instance, if the reason for the failure
5995 is that @samp{prefix} is wrong (perhaps it refers to the wrong device, or
5996 perhaps the path to @file{/boot/grub} was not correctly made relative to the
5997 device), then you can correct this and enter normal mode manually:
5998
5999 @example
6000 @group
6001 # Inspect the current prefix (and other preset variables):
6002 set
6003 # Find out which devices are available:
6004 ls
6005 # Set to the correct value, which might be something like this:
6006 set prefix=(hd0,1)/grub
6007 set root=(hd0,1)
6008 insmod normal
6009 normal
6010 @end group
6011 @end example
6012
6013 However, any problem that leaves you in the rescue shell probably means that
6014 GRUB was not correctly installed.  It may be more useful to try to reinstall
6015 it properly using @kbd{grub-install @var{device}} (@pxref{Invoking
6016 grub-install}).  When doing this, there are a few things to remember:
6017
6018 @itemize @bullet{}
6019 @item
6020 Drive ordering in your operating system may not be the same as the boot
6021 drive ordering used by your firmware.  Do not assume that your first hard
6022 drive (e.g. @samp{/dev/sda}) is the one that your firmware will boot from.
6023 @file{device.map} (@pxref{Device map}) can be used to override this, but it
6024 is usually better to use UUIDs or file system labels and avoid depending on
6025 drive ordering entirely.
6026
6027 @item
6028 At least on BIOS systems, if you tell @command{grub-install} to install GRUB
6029 to a partition but GRUB has already been installed in the master boot
6030 record, then the GRUB installation in the partition will be ignored.
6031
6032 @item
6033 If possible, it is generally best to avoid installing GRUB to a partition
6034 (unless it is a special partition for the use of GRUB alone, such as the
6035 BIOS Boot Partition used on GPT).  Doing this means that GRUB may stop being
6036 able to read its core image due to a file system moving blocks around, such
6037 as while defragmenting, running checks, or even during normal operation.
6038 Installing to the whole disk device is normally more robust.
6039
6040 @item
6041 Check that GRUB actually knows how to read from the device and file system
6042 containing @file{/boot/grub}.  It will not be able to read from encrypted
6043 devices with unsupported encryption scheme, nor from file systems for which
6044 support has not yet been added to GRUB.
6045 @end itemize
6046
6047
6048 @node Invoking grub-install
6049 @chapter Invoking grub-install
6050
6051 The program @command{grub-install} generates a GRUB core image using
6052 @command{grub-mkimage} and installs it on your system.  You must specify the
6053 device name on which you want to install GRUB, like this:
6054
6055 @example
6056 grub-install @var{install_device}
6057 @end example
6058
6059 The device name @var{install_device} is an OS device name or a GRUB
6060 device name.
6061
6062 @command{grub-install} accepts the following options:
6063
6064 @table @option
6065 @item --help
6066 Print a summary of the command-line options and exit.
6067
6068 @item --version
6069 Print the version number of GRUB and exit.
6070
6071 @item --boot-directory=@var{dir}
6072 Install GRUB images under the directory @file{@var{dir}/grub/}
6073 This option is useful when you want to install GRUB into a
6074 separate partition or a removable disk.
6075 If this option is not specified then it defaults to @file{/boot}, so
6076
6077 @example
6078 @kbd{grub-install /dev/sda}
6079 @end example
6080
6081 is equivalent to
6082
6083 @example
6084 @kbd{grub-install --boot-directory=/boot/ /dev/sda}
6085 @end example
6086
6087 Here is an example in which you have a separate @dfn{boot} partition which is 
6088 mounted on
6089 @file{/mnt/boot}:
6090
6091 @example
6092 @kbd{grub-install --boot-directory=/mnt/boot /dev/sdb}
6093 @end example
6094
6095 @item --recheck
6096 Recheck the device map, even if @file{/boot/grub/device.map} already
6097 exists. You should use this option whenever you add/remove a disk
6098 into/from your computer.
6099
6100 @item --no-rs-codes
6101 By default on x86 BIOS systems, @command{grub-install} will use some
6102 extra space in the bootloader embedding area for Reed-Solomon
6103 error-correcting codes. This enables GRUB to still boot successfully
6104 if some blocks are corrupted.  The exact amount of protection offered
6105 is dependent on available space in the embedding area.  R sectors of
6106 redundancy can tolerate up to R/2 corrupted sectors. This
6107 redundancy may be cumbersome if attempting to cryptographically
6108 validate the contents of the bootloader embedding area, or in more
6109 modern systems with GPT-style partition tables (@pxref{BIOS
6110 installation}) where GRUB does not reside in any unpartitioned space
6111 outside of the MBR.  Disable the Reed-Solomon codes with this option.
6112 @end table
6113
6114 @node Invoking grub-mkconfig
6115 @chapter Invoking grub-mkconfig
6116
6117 The program @command{grub-mkconfig} generates a configuration file for GRUB
6118 (@pxref{Simple configuration}).
6119
6120 @example
6121 grub-mkconfig -o /boot/grub/grub.cfg
6122 @end example
6123
6124 @command{grub-mkconfig} accepts the following options:
6125
6126 @table @option
6127 @item --help
6128 Print a summary of the command-line options and exit.
6129
6130 @item --version
6131 Print the version number of GRUB and exit.
6132
6133 @item -o @var{file}
6134 @itemx --output=@var{file}
6135 Send the generated configuration file to @var{file}.  The default is to send
6136 it to standard output.
6137 @end table
6138
6139
6140 @node Invoking grub-mkpasswd-pbkdf2
6141 @chapter Invoking grub-mkpasswd-pbkdf2
6142
6143 The program @command{grub-mkpasswd-pbkdf2} generates password hashes for
6144 GRUB (@pxref{Security}).
6145
6146 @example
6147 grub-mkpasswd-pbkdf2
6148 @end example
6149
6150 @command{grub-mkpasswd-pbkdf2} accepts the following options:
6151
6152 @table @option
6153 @item -c @var{number}
6154 @itemx --iteration-count=@var{number}
6155 Number of iterations of the underlying pseudo-random function.  Defaults to
6156 10000.
6157
6158 @item -l @var{number}
6159 @itemx --buflen=@var{number}
6160 Length of the generated hash.  Defaults to 64.
6161
6162 @item -s @var{number}
6163 @itemx --salt=@var{number}
6164 Length of the salt.  Defaults to 64.
6165 @end table
6166
6167
6168 @node Invoking grub-mkrelpath
6169 @chapter Invoking grub-mkrelpath
6170
6171 The program @command{grub-mkrelpath} makes a file system path relative to
6172 the root of its containing file system.  For instance, if @file{/usr} is a
6173 mount point, then:
6174
6175 @example
6176 $ @kbd{grub-mkrelpath /usr/share/grub/unicode.pf2}
6177 @samp{/share/grub/unicode.pf2}
6178 @end example
6179
6180 This is mainly used internally by other GRUB utilities such as
6181 @command{grub-mkconfig} (@pxref{Invoking grub-mkconfig}), but may
6182 occasionally also be useful for debugging.
6183
6184 @command{grub-mkrelpath} accepts the following options:
6185
6186 @table @option
6187 @item --help
6188 Print a summary of the command-line options and exit.
6189
6190 @item --version
6191 Print the version number of GRUB and exit.
6192 @end table
6193
6194
6195 @node Invoking grub-mkrescue
6196 @chapter Invoking grub-mkrescue
6197
6198 The program @command{grub-mkrescue} generates a bootable GRUB rescue image
6199 (@pxref{Making a GRUB bootable CD-ROM}).
6200
6201 @example
6202 grub-mkrescue -o grub.iso
6203 @end example
6204
6205 All arguments not explicitly listed as @command{grub-mkrescue} options are
6206 passed on directly to @command{xorriso} in @command{mkisofs} emulation mode.
6207 Options passed to @command{xorriso} will normally be interpreted as
6208 @command{mkisofs} options; if the option @samp{--} is used, then anything
6209 after that will be interpreted as native @command{xorriso} options.
6210
6211 Non-option arguments specify additional source directories.  This is
6212 commonly used to add extra files to the image:
6213
6214 @example
6215 mkdir -p disk/boot/grub
6216 @r{(add extra files to @file{disk/boot/grub})}
6217 grub-mkrescue -o grub.iso disk
6218 @end example
6219
6220 @command{grub-mkrescue} accepts the following options:
6221
6222 @table @option
6223 @item --help
6224 Print a summary of the command-line options and exit.
6225
6226 @item --version
6227 Print the version number of GRUB and exit.
6228
6229 @item -o @var{file}
6230 @itemx --output=@var{file}
6231 Save output in @var{file}.  This "option" is required.
6232
6233 @item --modules=@var{modules}
6234 Pre-load the named GRUB modules in the image.  Multiple entries in
6235 @var{modules} should be separated by whitespace (so you will probably need
6236 to quote this for your shell).
6237
6238 @item --rom-directory=@var{dir}
6239 If generating images for the QEMU or Coreboot platforms, copy the resulting
6240 @file{qemu.img} or @file{coreboot.elf} files respectively to the @var{dir}
6241 directory as well as including them in the image.
6242
6243 @item --xorriso=@var{file}
6244 Use @var{file} as the @command{xorriso} program, rather than the built-in
6245 default.
6246
6247 @item --grub-mkimage=@var{file}
6248 Use @var{file} as the @command{grub-mkimage} program, rather than the
6249 built-in default.
6250 @end table
6251
6252
6253 @node Invoking grub-mount
6254 @chapter Invoking grub-mount
6255
6256 The program @command{grub-mount} performs a read-only mount of any file
6257 system or file system image that GRUB understands, using GRUB's file system
6258 drivers via FUSE.  (It is only available if FUSE development files were
6259 present when GRUB was built.)  This has a number of uses:
6260
6261 @itemize @bullet
6262 @item
6263 It provides a convenient way to check how GRUB will view a file system at
6264 boot time.  You can use normal command-line tools to compare that view with
6265 that of your operating system, making it easy to find bugs.
6266
6267 @item
6268 It offers true read-only mounts.  Linux does not have these for journalling
6269 file systems, because it will always attempt to replay the journal at mount
6270 time; while you can temporarily mark the block device read-only to avoid
6271 this, that causes the mount to fail.  Since GRUB intentionally contains no
6272 code for writing to file systems, it can easily provide a guaranteed
6273 read-only mount mechanism.
6274
6275 @item
6276 It allows you to examine any file system that GRUB understands without
6277 needing to load additional modules into your running kernel, which may be
6278 useful in constrained environments such as installers.
6279
6280 @item
6281 Since it can examine file system images (contained in regular files) just as
6282 easily as file systems on block devices, you can use it to inspect any file
6283 system image that GRUB understands with only enough privileges to use FUSE,
6284 even if nobody has yet written a FUSE module specifically for that file
6285 system type.
6286 @end itemize
6287
6288 Using @command{grub-mount} is normally as simple as:
6289
6290 @example
6291 grub-mount /dev/sda1 /mnt
6292 @end example
6293
6294 @command{grub-mount} must be given one or more images and a mount point as
6295 non-option arguments (if it is given more than one image, it will treat them
6296 as a RAID set), and also accepts the following options:
6297
6298 @table @option
6299 @item --help
6300 Print a summary of the command-line options and exit.
6301
6302 @item --version
6303 Print the version number of GRUB and exit.
6304
6305 @item -C
6306 @itemx --crypto
6307 Mount encrypted devices, prompting for a passphrase if necessary.
6308
6309 @item -d @var{string}
6310 @itemx --debug=@var{string}
6311 Show debugging output for conditions matching @var{string}.
6312
6313 @item -K prompt|@var{file}
6314 @itemx --zfs-key=prompt|@var{file}
6315 Load a ZFS encryption key.  If you use @samp{prompt} as the argument,
6316 @command{grub-mount} will read a passphrase from the terminal; otherwise, it
6317 will read key material from the specified file.
6318
6319 @item -r @var{device}
6320 @itemx --root=@var{device}
6321 Set the GRUB root device to @var{device}.  You do not normally need to set
6322 this; @command{grub-mount} will automatically set the root device to the
6323 root of the supplied file system.
6324
6325 If @var{device} is just a number, then it will be treated as a partition
6326 number within the supplied image.  This means that, if you have an image of
6327 an entire disk in @file{disk.img}, then you can use this command to mount
6328 its second partition:
6329
6330 @example
6331 grub-mount -r 2 disk.img mount-point
6332 @end example
6333
6334 @item -v
6335 @itemx --verbose
6336 Print verbose messages.
6337 @end table
6338
6339
6340 @node Invoking grub-probe
6341 @chapter Invoking grub-probe
6342
6343 The program @command{grub-probe} probes device information for a given path
6344 or device.
6345
6346 @example
6347 grub-probe --target=fs /boot/grub
6348 grub-probe --target=drive --device /dev/sda1
6349 @end example
6350
6351 @command{grub-probe} must be given a path or device as a non-option
6352 argument, and also accepts the following options:
6353
6354 @table @option
6355 @item --help
6356 Print a summary of the command-line options and exit.
6357
6358 @item --version
6359 Print the version number of GRUB and exit.
6360
6361 @item -d
6362 @itemx --device
6363 If this option is given, then the non-option argument is a system device
6364 name (such as @samp{/dev/sda1}), and @command{grub-probe} will print
6365 information about that device.  If it is not given, then the non-option
6366 argument is a filesystem path (such as @samp{/boot/grub}), and
6367 @command{grub-probe} will print information about the device containing that
6368 part of the filesystem.
6369
6370 @item -m @var{file}
6371 @itemx --device-map=@var{file}
6372 Use @var{file} as the device map (@pxref{Device map}) rather than the
6373 default, usually @samp{/boot/grub/device.map}.
6374
6375 @item -t @var{target}
6376 @itemx --target=@var{target}
6377 Print information about the given path or device as defined by @var{target}.
6378 The available targets and their meanings are:
6379
6380 @table @samp
6381 @item fs
6382 GRUB filesystem module.
6383 @item fs_uuid
6384 Filesystem Universally Unique Identifier (UUID).
6385 @item fs_label
6386 Filesystem label.
6387 @item drive
6388 GRUB device name.
6389 @item device
6390 System device name.
6391 @item partmap
6392 GRUB partition map module.
6393 @item abstraction
6394 GRUB abstraction module (e.g. @samp{lvm}).
6395 @item cryptodisk_uuid
6396 Crypto device UUID.
6397 @item msdos_parttype
6398 MBR partition type code (two hexadecimal digits).
6399 @item hints_string
6400 A string of platform search hints suitable for passing to the
6401 @command{search} command (@pxref{search}).
6402 @item bios_hints
6403 Search hints for the PC BIOS platform.
6404 @item ieee1275_hints
6405 Search hints for the IEEE1275 platform.
6406 @item baremetal_hints
6407 Search hints for platforms where disks are addressed directly rather than
6408 via firmware.
6409 @item efi_hints
6410 Search hints for the EFI platform.
6411 @item arc_hints
6412 Search hints for the ARC platform.
6413 @item compatibility_hint
6414 A guess at a reasonable GRUB drive name for this device, which may be
6415 used as a fallback if the @command{search} command fails.
6416 @item disk
6417 System device name for the whole disk.
6418 @end table
6419
6420 @item -v
6421 @itemx --verbose
6422 Print verbose messages.
6423 @end table
6424
6425
6426 @node Invoking grub-script-check
6427 @chapter Invoking grub-script-check
6428
6429 The program @command{grub-script-check} takes a GRUB script file
6430 (@pxref{Shell-like scripting}) and checks it for syntax errors, similar to
6431 commands such as @command{sh -n}.  It may take a @var{path} as a non-option
6432 argument; if none is supplied, it will read from standard input.
6433
6434 @example
6435 grub-script-check /boot/grub/grub.cfg
6436 @end example
6437
6438 @command{grub-script-check} accepts the following options:
6439
6440 @table @option
6441 @item --help
6442 Print a summary of the command-line options and exit.
6443
6444 @item --version
6445 Print the version number of GRUB and exit.
6446
6447 @item -v
6448 @itemx --verbose
6449 Print each line of input after reading it.
6450 @end table
6451
6452
6453 @node Obtaining and Building GRUB
6454 @appendix How to obtain and build GRUB
6455
6456 @quotation
6457 @strong{Caution:} GRUB requires binutils-2.9.1.0.23 or later because the
6458 GNU assembler has been changed so that it can produce real 16bits
6459 machine code between 2.9.1 and 2.9.1.0.x. See
6460 @uref{http://sources.redhat.com/binutils/}, to obtain information on
6461 how to get the latest version.
6462 @end quotation
6463
6464 GRUB is available from the GNU alpha archive site
6465 @uref{ftp://ftp.gnu.org/gnu/grub} or any of its mirrors. The file
6466 will be named grub-version.tar.gz. The current version is
6467 @value{VERSION}, so the file you should grab is:
6468
6469 @uref{ftp://ftp.gnu.org/gnu/grub/grub-@value{VERSION}.tar.gz}
6470
6471 To unbundle GRUB use the instruction:
6472
6473 @example
6474 @kbd{zcat grub-@value{VERSION}.tar.gz | tar xvf -}
6475 @end example
6476
6477 which will create a directory called @file{grub-@value{VERSION}} with
6478 all the sources. You can look at the file @file{INSTALL} for detailed
6479 instructions on how to build and install GRUB, but you should be able to
6480 just do:
6481
6482 @example
6483 @group
6484 @kbd{cd grub-@value{VERSION}}
6485 @kbd{./configure}
6486 @kbd{make install}
6487 @end group
6488 @end example
6489
6490 Also, the latest version is available using Git. See
6491 @uref{http://www.gnu.org/software/grub/grub-download.html} for more
6492 information.
6493
6494 @node Reporting bugs
6495 @appendix Reporting bugs
6496
6497 These are the guideline for how to report bugs. Take a look at this
6498 list below before you submit bugs:
6499
6500 @enumerate
6501 @item
6502 Before getting unsettled, read this manual through and through. Also,
6503 see the @uref{http://www.gnu.org/software/grub/grub-faq.html, GNU GRUB FAQ}.
6504
6505 @item
6506 Always mention the information on your GRUB. The version number and the
6507 configuration are quite important. If you build it yourself, write the
6508 options specified to the configure script and your operating system,
6509 including the versions of gcc and binutils.
6510
6511 @item
6512 If you have trouble with the installation, inform us of how you
6513 installed GRUB. Don't omit error messages, if any. Just @samp{GRUB hangs
6514 up when it boots} is not enough.
6515
6516 The information on your hardware is also essential. These are especially
6517 important: the geometries and the partition tables of your hard disk
6518 drives and your BIOS.
6519
6520 @item
6521 If GRUB cannot boot your operating system, write down
6522 @emph{everything} you see on the screen. Don't paraphrase them, like
6523 @samp{The foo OS crashes with GRUB, even though it can boot with the
6524 bar boot loader just fine}. Mention the commands you executed, the
6525 messages printed by them, and information on your operating system
6526 including the version number.
6527
6528 @item
6529 Explain what you wanted to do. It is very useful to know your purpose
6530 and your wish, and how GRUB didn't satisfy you.
6531
6532 @item
6533 If you can investigate the problem yourself, please do. That will give
6534 you and us much more information on the problem. Attaching a patch is
6535 even better.
6536
6537 When you attach a patch, make the patch in unified diff format, and
6538 write ChangeLog entries. But, even when you make a patch, don't forget
6539 to explain the problem, so that we can understand what your patch is
6540 for.
6541
6542 @item
6543 Write down anything that you think might be related. Please understand
6544 that we often need to reproduce the same problem you encountered in our
6545 environment. So your information should be sufficient for us to do the
6546 same thing---Don't forget that we cannot see your computer directly. If
6547 you are not sure whether to state a fact or leave it out, state it!
6548 Reporting too many things is much better than omitting something
6549 important.
6550 @end enumerate
6551
6552 If you follow the guideline above, submit a report to the
6553 @uref{http://savannah.gnu.org/bugs/?group=grub, Bug Tracking System}.
6554 Alternatively, you can submit a report via electronic mail to
6555 @email{bug-grub@@gnu.org}, but we strongly recommend that you use the
6556 Bug Tracking System, because e-mail can be passed over easily.
6557
6558 Once we get your report, we will try to fix the bugs.
6559
6560
6561 @node Future
6562 @appendix Where GRUB will go
6563
6564 GRUB 2 is now quite stable and used in many production systems.  We are
6565 currently working towards a 2.0 release.
6566
6567 If you are interested in the development of GRUB 2, take a look at
6568 @uref{http://www.gnu.org/software/grub/grub.html, the homepage}.
6569
6570
6571
6572
6573
6574 @node Copying This Manual
6575 @appendix Copying This Manual
6576
6577 @menu
6578 * GNU Free Documentation License::  License for copying this manual.
6579 @end menu
6580
6581 @include fdl.texi
6582
6583
6584 @node Index
6585 @unnumbered Index
6586
6587 @c Currently, we use only the Concept Index.
6588 @printindex cp
6589
6590
6591 @bye
6592
6593 Some notes:
6594
6595   This is an attempt to make a manual for GRUB 2. The contents are
6596   copied from the GRUB manual in GRUB Legacy, so they are not always
6597   appropriate yet for GRUB 2.