View previous topic :: View next topic |
Author |
Message |
StarF Guru
Joined: 12 Sep 2004 Posts: 368
|
Posted: Fri Apr 07, 2006 1:26 pm Post subject: Problim with grub |
|
|
I hope this is the right forum.
I have a problem each time i try to boot my new installed system i get:
Code: | Booting Gentoo Box
root (hd0,0)
filesystem type is ext2fs, partiontype 0x83
kernel /boot/kernel01
error 15: file not found |
my grub.conf looks like this:
Code: | livecd / # cat /boot/grub/grub.conf
# Which listing to boot as default. 0 is the first, 1 the second etc.
default 0
# How many seconds to wait before the default listing is booted.
timeout 30
# Nice, fat splash-image to spice things up :)
# Comment out if you don't have a graphics card installed
splashimage=(hd0,0)/boot/grub/splash.xpm.gz
title=Gentoo MEDIA box
# Partition where the kernel image (or operating system) is located
root (hd0,0)
kernel /boot/kernel01 root=/dev/hda3
livecd / # |
more or less a standard setup from the guide! my kernel is here:
Code: | livecd / # ls /boot
grub kernel01 lost+found
livecd / # |
i got a via epia -m board if that has anything to with it.. can any tell me what´s wrong? |
|
Back to top |
|
|
Sleipnir Guru
Joined: 20 Sep 2005 Posts: 372 Location: Germany
|
Posted: Fri Apr 07, 2006 1:46 pm Post subject: |
|
|
StarF wrote: |
root (hd0,0)
|
This is /dev/hda1! Are you really sure that your root filesystem is located there? _________________ A)bort, R)etry, I)nfluence with large hammer. |
|
Back to top |
|
|
cyrillic Watchman
Joined: 19 Feb 2003 Posts: 7313 Location: Groton, Massachusetts USA
|
Posted: Fri Apr 07, 2006 1:49 pm Post subject: |
|
|
It looks like you are missing the boot -> . symlink.
You can create one like this
Code: | # cd /boot
# ln -s . boot |
Or, you could just change your kernel path from /boot/kernel01 to /kernel01 , and it would work without the symlink. |
|
Back to top |
|
|
StarF Guru
Joined: 12 Sep 2004 Posts: 368
|
Posted: Fri Apr 07, 2006 2:35 pm Post subject: |
|
|
cyrillic wrote: | It looks like you are missing the boot -> . symlink.
You can create one like this
Code: | # cd /boot
# ln -s . boot |
Or, you could just change your kernel path from /boot/kernel01 to /kernel01 , and it would work without the symlink. |
alright i did a
tnx that worked..... |
|
Back to top |
|
|
|