You are not logged in.
Pages: 1
So, I did a system update, which involved the manual steps to relocate binaries, which I did. Update completed successfully but ever since my machine boots into GRUB shell and I cannot boot the Arch image. I run dual boot with Arch64/Win7 and can boot Win7 just fine using
root (hd0,0)
chainloader +1
bootbut if I try to boot arch using the same sequence
root (hd0,3)
chainloader +1
bootIt just sits on a message telling me it is starting up, but nothing happens...
Thoughts?
Thanks !
Last edited by void7910 (2013-06-24 19:49:37)
Offline
Okay... pretend like yu are totally unfamiliar with your problem. Then read through your post. Can you dtermine what it is that is going on, or what you are asking from just that information?
http://www.catb.org/esr/faqs/smart-questions.html
Offline
Thoughts? I think that you shouldn't be trying to boot Arch with a chainloader, since Grub is perfectly able to do this on its own.
Post your current config somewhere to let us analyse it?
Offline
kay... pretend like yu are totally unfamiliar with your problem. Then read through your post. Can you dtermine what it is that is going on, or what you are asking from just that information?
http://www.catb.org/esr/faqs/smart-questions.html
Yes, you can. He updated the system and when he rebooted he was stuck at the grub shell unable to boot.
First to boot you should try this:
find /boot/grub/stage1 //use this to determine your boot disk and partition
root (hd0,3) //replace 0 and 3 by the numbers determined above
kernel /boot/vmlinuz-linux root=/dev/sda4 //replace 4 by the partition number (+1)
initrd /boot/initramfs-linux.img
bootIf everything went right the system will boot, then you can rename /boot/grub/menu.lst.pacsave to /boot/grub/menu.lst:
mv /boot/grub/menu.lst.pacsave /boot/grub/menu.lst or fix grub2 by following the last part of this post:
Offline
If everything went right the system will boot, then you can rename /boot/grub/menu.lst.pacsave to /boot/grub/menu.lst
While stuck in the grub shell, a more convinient way to get back into your system would be:
configfile /grub/menu.lst.pacsaveIn case you have /boot on the root partition, adjust the path (/boot/grub..)
Offline
Oh, I didn't know that. Yeah that's neat.
Offline
Wait a minute, menu.lst ?!
Madness! GRUB Legacy support has been dropped from Arch Linux for almost a year now (link).
So, I did a system update, which involved the manual steps to relocate binaries, which I did.
Ok, if you really wanna keep using GRUB Legacy, fine, it's your choice. Personally I switched to Syslinux and haven't looked back. But if you want to keep using it, it says here that you need to fix any non-official packages (i.e. from the AUR, and grub-legacy is from the AUR).
PS: Don't forget to mark the topic as solved (by editing the first post) so that other people (including yourself sometimes) may find useful.
Last edited by DSpider (2013-06-25 19:44:26)
I have made a personal commitment not to reply in topics that start with a lowercase letter. Proper grammar and punctuation is a sign of respect, and if you do not show any, you will NOT receive any help (at least not from me).
Offline
Pages: 1