GRUB: Difference between revisions
Jump to navigation
Jump to search
Die Seite wurde neu angelegt: == Installation == == Configuration == == Finalize == |
No edit summary |
||
| Line 1: | Line 1: | ||
== Packages == | |||
{{Box Code|emerge grub -pv| | |||
<pre> | |||
[ebuild N ] sys-boot/grub-0.97-r5 USE="ncurses -custom-cflags -netboot -static" 1,013 kB | |||
</pre> | |||
}} | |||
== Installation == | == Installation == | ||
{{Codeline|# mount /boot}} | |||
{{Codeline|# emerge grub}} | |||
== Configuration == | == Configuration == | ||
=== Sample: 1 HDD - Linux only === | |||
{{Box File|/boot/grub/grub.conf| | |||
<pre> | |||
default 0 | |||
timeout 10 | |||
splashimage=(hd0,0)/boot/grub/splash.xpm.gz | |||
title Gentoo Linux | |||
root (hd0,0) | |||
kernel /boot/vmlinuz root=/dev/sda3 | |||
title Gentoo Linux (rescue) | |||
root (hd0,0) | |||
kernel /boot/vmlinuz root=/dev/sda3 init=/bin/bb | |||
</pre> | |||
}} | |||
=== Sample: 1 HDD - Linux and Windows === | |||
=== Sample: 2 HDD - Linux and Windows === | |||
=== Sample: x HDD - Linux and Windows === | |||
== Finalize == | == Finalize == | ||
Revision as of 14:40, 28 April 2008
Packages
Installation
# mount /boot # emerge grub