Results 1 to 10 of 10
I know this has probably happend to others but my ubuntu 12.10 and Zorin 6 machine will not boot up all i get is error file not found grub rescue. ...
Enjoy an ad free experience by logging in. Not a member yet? Register.
- 03-15-2013 #1Just Joined!
- Join Date
- Mar 2013
- Posts
- 2
grub rescue
I know this has probably happend to others but my ubuntu 12.10 and Zorin 6 machine will not boot up all i get is error file not found grub rescue. I know that both partions can be mounted when i run the live CD i need help with this problem please
David
- 03-15-2013 #2
Hi and Welcome !
Which distro's did you install first? Have you tried to re-install GRUB using Installation CD/USB?It is amazing what you can accomplish if you do not care who gets the credit.
New Users: Read This First
- 03-15-2013 #3Just Joined!
- Join Date
- Mar 2013
- Posts
- 2
- 03-15-2013 #4Just Joined!
- Join Date
- Feb 2010
- Location
- Berlin, Germany
- Posts
- 6
Hey David,
did you follow devils casper advice to re-install grub via a Live-CD? Boot-up any Live-Linux (Ubuntu, Knoppix or Fedora might be the easiest, but choose whatever you like). Then you might want to run os-prober (possibly you have to install the package first as Live-distributions tend not to come with it by default) to check whether Ubuntu and Zorin are detected. Re-install GRUB via grub-install on your hard drive (See man page for more information). That would be sda (Not a partition like sda1, sda2...!) assuming that you have a SATA drive that is recognized as sda. If in doubt, you can check via:
orCode:$ /sbin/fdisk -l
to have all your partitions displayed. Thus you can figure out not only how your connected hard drive(s) are partitioned but also which is the physical hard drive your Ubuntu and Zorin OS are installed on. Install GRUB on the same hard drive, but not a specific partition like sda1!Code:# fdisk -l ## as ROOT
Good luck! Beware: Fiddling with partitions and hard drives can destroy your data!!!!!
- 03-15-2013 #5Just Joined!
- Join Date
- Mar 2005
- Location
- Belleville Michigan
- Posts
- 21
I would run spin rite on it.
Do you know if the hard drive is still good? Spin rite is good to fix hard drives and tell you about when to get a new one. It cost about $80 for it but it's very good at fixing hard drives. Or just keeping them good longer.
-Raymond Day
- 03-16-2013 #6
While I agree about spinrite, this doesn't sound anything like a hard drive issue.
@ OP: Just, as others have said, reinstall GRUB, use the latest live Ubuntu CD, then:
Switch to root:
(prompt should now have a # instead of a $).Code:sudo su
Find out what drive is which:
(You're looking for sdX, where X is a, b, c, d, e, etc., it will be sda if you only have one drive, make sure you get this right, then after it will be a number (1, 2, 3, 4, etc.). Note the number of the partition of your Ubuntu install:Code:fdisk -l
ie.
sda2
could be a possible partition..
Then mount that partition in the live environment, first make sure all drives are unmounted, you can do this with:
Then mount that Ubuntu partition in the live env.Code:umount -a
NOTE: could as easily be sdb1 or sdc4, it's whatever your fdisk list reported as your ubuntu partition..Code:mount /dev/sda2 /mnt
After it's mounted, you can reinstall grub:
NOTE: Since GRUB will be installed to the MBR (applicable to all partitions on that drive), it's just the drive, the partition number ('2' in my example) is omitted, so just sda (opposed to 'sda1')Code:grub-install --root-directory=/mnt/ /dev/sda
Hope that helps, let us know what happens..
EDIT:
If you don't know what's what in your partition layout, copy/paste the output of fdisk here and we can try and help you
.
- 03-17-2013 #7
hi devils casper
could it be that the kernel got updated but not the entry in grub?
you can see the kernel image in the /boot/ folder
the grub config file(grub.cfg) would be in the /boot/grub/ folder wherever that got installed
in there one should find something like:
menuentry "Ubuntu, with Linux 3.2.0-38-generic" or whatever kernel 12.10 uses
this entry should correspond with the image in the /boot/ folder
fen
- 03-18-2013 #8It is amazing what you can accomplish if you do not care who gets the credit.
New Users: Read This First
- 03-18-2013 #9Just Joined!
- Join Date
- Dec 2007
- Location
- Alabama, USA
- Posts
- 30
There is a very simple way to solve this problem, download "super grub" and run it. It has never failed me yet on these kind of issues.
- 03-18-2013 #10Just Joined!
- Join Date
- Apr 2005
- Posts
- 1
Many Debian distros are a bit shaky with Grub and MBR. Use Boot-repair and follow these instructions: help.ubuntu.com/community/Boot-Repair. I'm quite sure it will resolve your problems


Reply With Quote

