|
Kernel panic stopps booting after "fine tuning" January 17, 2009 03:31PM |
Registered: 4 years ago Posts: 1 |
|
Re: Kernel panic stopps booting after "fine tuning" February 13, 2009 02:28AM |
Registered: 4 years ago Posts: 2 |
umount /mnt/sda5 mount /dev/sda5 /mnt/sda4/usrWe need a chroot-environment, so we have to switch proc and dev:
mount -t proc none /mnt/sda4/proc mount -o bind /dev /mnt/sda4/devLet's do the chroot:
chroot /mnt/sda4 /bin/bashNow let's install grub; the stage-files are not in /boot by default, so we copy them first, then start the grub-console:
cp /usr/lib/grub/i386-pc/* /boot/grub/ grubOn the grub-command line you have to define your root-device, for me it is sda4:
root (hd0,3)Install grub. I use the refit as boot-loader on the Mac, and don't want to change that, so I installed grub to be chain-loaded by it:
setup (hd0,3) quitNow we have to enter the system in the boot-menu, open it with an editor:
vi /boot/grub/menu.lstAnd enter something like this, depending on your kernel and initial ramdisk and your root-partition:
default 0
timeout 5
title ELIVE
root (hd0,3)
kernel (hd0,3)/boot/vmlinuz-2.6.26.8-elive-686 root=/dev/sda4
initrd (hd0,3)/boot/initrd.img-2-.6.26.8-elive-686
Save and reboot, everything should work now.
|
Re: Kernel panic stopps booting after "fine tuning" August 05, 2009 04:28AM |
Registered: 4 years ago Posts: 5 |
|
Re: Kernel panic stopps booting after "fine tuning" August 08, 2009 05:26AM |
Moderator Registered: 5 years ago Posts: 157 |