GRUB: Difference between revisions

From Q
Jump to navigation Jump to search
Tgurr (talk | contribs)
Tgurr (talk | contribs)
Line 43: Line 43:
=== Software RAID-1 ===
=== Software RAID-1 ===
=== Hardware RAID (HP/Compaq Smart Array RAID controller) ===
=== Hardware RAID (HP/Compaq Smart Array RAID controller) ===
{{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/cciss/c0d0p3
title Gentoo Linux (rescue)
root (hd0,0)
kernel /boot/vmlinuz root=/dev/cciss/c0d0p3 init=/bin/bb
</pre>
}}
{{Box File|/boot/grub/device.map|
<pre>
(hd0)  /dev/cciss/c0d0
</pre>
}}
{{Codeline|# grub-install --no-floppy /dev/cciss/c0d0}}


== Finalize ==
== Finalize ==

Revision as of 13:54, 29 April 2008

Packages

32bit

Template:Box Code

64bit

Template:Box Code

Installation

# mount /boot

# emerge grub

Configuration

Normal

1 HDD 3 Partitions (boot/swap/root) - Linux only

Template:Box File # grub-install --no-floppy /dev/sda

1 HDD - Linux and Windows

2 HDD - Linux and Windows

x HDD - Linux and Windows

Software RAID-1

Hardware RAID (HP/Compaq Smart Array RAID controller)

Template:Box File

Template:Box File

# grub-install --no-floppy /dev/cciss/c0d0

Finalize

If the menu.lst symlink doesn't exist we MUST create it

# cd /boot/grub

# ln -snf grub.conf menu.lst