Plz anyone can help me when I reboot my system after the installation, kernel doesnīt load, this is the error:
pastebin .c om/ HuFN3ec6
thx
Printable View
Plz anyone can help me when I reboot my system after the installation, kernel doesnīt load, this is the error:
pastebin .c om/ HuFN3ec6
thx
It would be easier if we were mind readers on here but alas we are not, so, the more information you post the better.
System specs.
Operating system, etc, etc.
Are you installing from a external drive?
Ok, in your GRUB config file you need to add this to the kernel line
kernel XXxXXXxXX root=/dev/sdxx
Where /dev/sdxx is your actual root partition. Save, reboot and report back. I'm not at my Linux box right now but I can get there fast enough if you need more help.
EDIT:
http://pastebin.com/HuFN3ec6
I'll add your link here but be advised, you can post those error messages here if you use the code tags.
I have sonoy laptop VPCF1 i7 proccessor, 8GB RAM
Iīm usin Lilo instead of grub, does matter??
this is my lilo.conf
Code:root=/dev/sda
prompt
timeout=50
default=gentoo
lba32
image=/boot/kernel-3.4.9-gentoo
label=Gentoo
read-only
root=/dev/sda4
append="video=uvesafb:mtrr,ywrap,1024x768-32@85"
image=/boot/kernel-3.4.9-gentoo
label=gentoo.rescue
read-only
root=/dev/sda4
append="init=/bin/bb"
other=/dev/sda1
label=Windows7
Try this
It's been a long time since I used Lilo but I think this might work. Not sure about that Read only, I guess try it and find out.Code:prompt
timeout=50
default=gentoo
lba32
image=/boot/kernel-3.4.9-gentoo root=/dev/sda4
label=Gentoo
read-only
append="video=uvesafb:mtrr,ywrap,1024x768-32@85"
image=/boot/kernel-3.4.9-gentoo
label=gentoo.rescue
read-only
root=/dev/sda4
append="init=/bin/bb"
other=/dev/sda1
label=Windows7
the same error :(
idk what is
here is my kernel config, i think itīs ok...
I write the link cause is too long for puti here in code right?
bpaste .ne t/ show/4 8339/
Did you execute lilo command after editing lilo.conf file?
/dev/sda4 is your / partition right? Do you have a separate /boot partition also?
yes, I executed /sbin lilo after reediting.
and yes, my /boot partition is separated:
Number Start End Size Type File system Flags
1 32.3kB 460GB 460GB primary ntfs
2 460GB 468GB 8497MB primary linux-swap(v1)
3 468GB 469GB 428MB primary ext2 boot
4 469GB 640GB 171GB primary ext4
Here is an example from the Gentoo handbook
And here is what I come up with.Code:boot=/dev/sda # Install LILO in the MBR
prompt # Give the user the chance to select another section
timeout=50 # Wait 5 (five) seconds before booting the default section
default=gentoo # When the timeout has passed, boot the "gentoo" section
image=/boot/kernel-3.3.8-gentoo
label=gentoo # Name we give to this section
read-only # Start with a read-only root. Do not alter!
root=/dev/sda3 # Location of the root filesystem
image=/boot/kernel-3.3.8-gentoo
label=gentoo.rescue # Name we give to this section
read-only # Start with a read-only root. Do not alter!
root=/dev/sda3 # Location of the root filesystem
append="init=/bin/bb" # Launch the Gentoo static rescue shell
# The next two lines are only if you dualboot with a Windows system.
# In this case, Windows is hosted on /dev/sda6.
other=/dev/sda6
label=windows
Your kernel .config doesn't help because we don't know what options you need vs what you have in your machine.Code:prompt
timeout=50
default=gentoo
image=/boot/kernel-3.4.9-gentoo
label=Gentoo
read-only
root=/dev/sda4
image=/boot/kernel-3.4.9-gentoo
label=gentoo.rescue
read-only
root=/dev/sda4
append="init=/bin/bb"
other=/dev/sda1
label=Windows7