ok, I upgraded my kubuntu on friday, but the upgrade spat out a lot of errors, so I decided that it would be better to just do a complete install from scratch.
The install went fine, but when I restarted grub hung up at boot (invalid device or something)
my partitions look like this
/dev/sda1 *boot fat32 Dell Utility (the computer came from dell and this a small partition setup by them)
/dev/sda2 NTFS (this is my windows partition)
/dev/sdb1 NTFS (this is a second hard drive with work files)
/dev/sdc1 ext3 /boot (this is where my grub and linux kernals are)
/dev/sdc5 swap
/dev/sdc6 ext3 / (main linux partition)
/dev/sdc7 ext3 /home (partition for my home files)
Now here is my problem, at boot, grub fails before it gets to the screen where I can choose the OS that I want, and type 'c' to get into the grub editor, so I have to boot from my rescue CD
when I do that I try to follow the directions found at
https://help.ubuntu.com/community/GrubHowto
under the section Backup, Repairing and Reinstalling GRUB - command line
my problem seems to be with the find command in grub
this returns Error 15 file not found, which makes sense because I booted from a CD and the /boot directory isn't the one that I actually want to modify...right?
so I mount sdc1 to /media/boot and if I cd there, grub and the kernals and everything are there
so I go back into grub and reissue the find command as
But that still returns the Error 15: File not found !!!!!
but the file is there, I can look at it, edit it, etc...
what's going on here? what am i doing wrong?
I'm going nuts
The install went fine, but when I restarted grub hung up at boot (invalid device or something)
my partitions look like this
/dev/sda1 *boot fat32 Dell Utility (the computer came from dell and this a small partition setup by them)
/dev/sda2 NTFS (this is my windows partition)
/dev/sdb1 NTFS (this is a second hard drive with work files)
/dev/sdc1 ext3 /boot (this is where my grub and linux kernals are)
/dev/sdc5 swap
/dev/sdc6 ext3 / (main linux partition)
/dev/sdc7 ext3 /home (partition for my home files)
Now here is my problem, at boot, grub fails before it gets to the screen where I can choose the OS that I want, and type 'c' to get into the grub editor, so I have to boot from my rescue CD
when I do that I try to follow the directions found at
https://help.ubuntu.com/community/GrubHowto
under the section Backup, Repairing and Reinstalling GRUB - command line
my problem seems to be with the find command in grub
Code:
grub> find /boot/grub/stage1
so I mount sdc1 to /media/boot and if I cd there, grub and the kernals and everything are there
so I go back into grub and reissue the find command as
Code:
grub> find /media/boot/grub/stage1
but the file is there, I can look at it, edit it, etc...
what's going on here? what am i doing wrong?
I'm going nuts
Comment