You are not logged in.
Pages: 1
After a new fresh install booting grub gives me an invalid device message, however, the fail safe works...
Heres my grub.conf
# (0) Arch Linux
title Arch Linux
root (hd0,0)
kernel /vmlinuz26
root=/dev/disk/by-uuid/21c4e847-9a48-4901-8ccc-5214ccc10d7f ro
initrd /kernel26.img
# (1) Arch Linux
title Arch Linux Fallback
root (hd0,0)
kernel /vmlinuz26 root=/dev/disk/by-uuid/21c4e847-9a48-4901-8ccc-5214ccc10d7f ro
initrd /kernel26-fallback.img
Thanks in advanced,
Rich
HP DM1Z-4100 // 11.6" LED 1366x768 // 1.65ghz AMD E-450 // 4gb Ram // 320gb hdd // ATI 6320 // 100% Archlinux
Offline
That's because you have an extra line feed between your vmlinuz26 and root for the regular login entry. This is what it should look like.
# (0) Arch Linux
title Arch Linux
root (hd0,0)
kernel /vmlinuz26 root=/dev/disk/by-uuid/21c4e847-9a48-4901-8ccc-5214ccc10d7f ro
initrd /kernel26.img
# (1) Arch Linux
title Arch Linux Fallback
root (hd0,0)
kernel /vmlinuz26 root=/dev/disk/by-uuid/21c4e847-9a48-4901-8ccc-5214ccc10d7f ro
initrd /kernel26-fallback.img
Last edited by Inxsible (2008-07-09 02:52:38)
There's no such thing as a stupid question, but there sure are a lot of inquisitive idiots !
Offline
Ohh wow... wonder how that happen...
Thanks a bunch!
-Rich
HP DM1Z-4100 // 11.6" LED 1366x768 // 1.65ghz AMD E-450 // 4gb Ram // 320gb hdd // ATI 6320 // 100% Archlinux
Offline
Pages: 1