Results 1 to 10 of 11
Is anyone's Grub able to manually Boot by
Pressing C at the Select O.S Prompt
root (hard-drive_name)
kernel /boot/kernel_name)
initrd /boot/init_name) And finally
boot 'enter'
None of my systems will ...
- 09-10-2011 #1
Grub Legacy Manual boot
Is anyone's Grub able to manually Boot by
Pressing C at the Select O.S Prompt
root (hard-drive_name)
kernel /boot/kernel_name)
initrd /boot/init_name) And finally
boot 'enter'
None of my systems will do this and all of the guides state that this will work.Does this function work on modern Systems?
Thanks in advance!
- 09-10-2011 #2
Using GRUB legacy, that could work...
But only if you entered the exact, correct information. No typos allowed.
You'll need to have a list of distros that are installed, and where they happen to be located. /boot partitions, as well, if applicable.
fdisk -l will help with this.
Is there a reason that you need to manually enter your boot options?Jay
New users, read this first.
New Member FAQ
Registered Linux User #463940
I do not respond to Private Messages asking for Linux help. Please, keep it on the public boards.
- 09-10-2011 #3
As jayd512 mentioned already, there shouldn't be any typo at grub> prompt. Device name assigned to Hard disk, kernel name/version should be exact.
Post the output of this
Code:ls /boot
Post exact commands.
Originally Posted by theKbStockpiler It is amazing what you can accomplish if you do not care who gets the credit.
New Users: Read This First
- 09-10-2011 #4
Thanks for the Replies!
The boot process stalls if initrd is used. If it is not used the kernel panics.root@Microknoppix:/home/knoppix# mount -t ext3 /dev/sda2 /mnt
root@Microknoppix:/home/knoppix# cd /mnt
root@Microknoppix:/mnt# ls
bin dev initrd lost+found opt sbin tmp vmlinuz
boot etc initrd.img media proc srv usr
cdrom home lib mnt root sys var
root@Microknoppix:/mnt# ls /mnt/boot
System.map-2.6.22-14-generic initrd.img-2.6.22-14-generic
abi-2.6.22-14-generic initrd.img-2.6.22-14-generic.bak
config-2.6.22-14-generic memtest86+.bin
grub vmlinuz-2.6.22-14-generic
root@Microknoppix:/mnt#
- 09-10-2011 #5
How did you install Knoppix? Do you know that even Knoppix developers don't recommend its Hard disk installation?
Anyways, have you installed any other Linux distro in same Hard disk? Could you post the output of fdisk -l command here?It is amazing what you can accomplish if you do not care who gets the credit.
New Users: Read This First
- 09-10-2011 #6
The fdisk you requested.
kbs@kbs-laptop:~$ sudo fdisk -l
omitting empty partition (5)
Disk /dev/sda: 60.0 GB, 60011642880 bytes
255 heads, 63 sectors/track, 7296 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Disk identifier: 0xffffffff
Device Boot Start End Blocks Id System
/dev/sda1 * 1 2664 21398548+ 7 HPFS/NTFS
Partition 1 does not end on cylinder boundary.
/dev/sda2 2665 4449 14336972 83 Linux
Partition 2 does not end on cylinder boundary.
/dev/sda3 4449 7100 21295104 83 Linux
Partition 3 does not end on cylinder boundary.
/dev/sda4 7101 7296 1574370 5 Extended
Partition 4 does not end on cylinder boundary.
/dev/sda5 7101 7168 546147 83 Linux
kbs@kbs-laptop:~$
The situation is that when I add a distro the new distro does not pickup the last one and the only success I have had is chainloading the distros that are not the last one installed. I can usually only get one distro to directly boot ,the last one installed. On this partitcular laptop grub made windows which was installed first unmountable and made its self unbootable. I know this is unheard of but I did this back to back with the same results.
I have MS on sda1 ,Ubuntu on sda2 and Fedora on sda3 . I tried to make a grub partition and have a one gig swap. I'm also trying to boot from a disk because don't want grub to damage windows again.Knoppix is live on this computer.knoppix@Microknoppix:~$ su
root@Microknoppix:/home/knoppix# mount -t ext2 /dev/sda5 /mnt
root@Microknoppix:/home/knoppix# cd /mnt
root@Microknoppix:/mnt# ls
boot legacy lost+found
root@Microknoppix:/mnt# cd /boot
root@Microknoppix:/boot# ls
System.map-2.6.39.3 config-2.6.39.3 grub vmlinuz vmlinuz-2.6.39.3
root@Microknoppix:/boot#Last edited by theKbStockpiler; 09-10-2011 at 10:18 PM.
- 09-11-2011 #7Linux Guru
- Join Date
- Oct 2007
- Location
- Tucson AZ
- Posts
- 1,939
Which bootloader are you using? Fedora? Ubuntu?
Fedora is notorious for not detecting any other Linux systems.
I don't know how Grub could cause windows to be "unmountable" since it doesn't even try to mount windows partitions. What do you mean by Grub making itself unbootable? You're being pretty vague about all this.
- 09-11-2011 #8
Have you looked at the GRUB Legacy documentation? Here is the section regarding Booting; GNU GRUB Manual 0.97
Post the output of cat /boot/grub/grub.conf.Jay
New users, read this first.
New Member FAQ
Registered Linux User #463940
I do not respond to Private Messages asking for Linux help. Please, keep it on the public boards.
- 09-11-2011 #9
More info
I had MS , Ubuntu and Fedora on this computer but Ubuntu was being chainloaded. I wanted Ubuntu to directly boot and just have one grub screen. The last thing I did was to reinstall grub to the MBR of this single drive system from Fedora so Fedora's stage2 would be used and have it directly boot Ubuntu. I did not think grub could go haywire but it did and made Windows unmountable so (bootcfg /rebuild would not obviously work because it could not be rescued from a rescue disk and Fedora will no longer boot. I reinstalled windows and then burned my own grub disk because all of my rescue/install disks are garbage and the tab completion feature will not usually work on these. The one I burned works every time as far as Tab-Completion goes. So I don't have grub in the MBR anymore and I'm relying on the boot disk for that. I did try a boot partition but abandoned it.
- 09-11-2011 #10
As yancek mentioned already, installers of some distros (actually, all RedHat based distros like CentOS, Fedora, RHEL etc. ) do not detect other installed distros. One has to add an entry of other distro in GRUB Menu manually.
It looks like GRUB detected Windows OS correctly but assigned wrong partition for it in GRUB conf. Post the contents of /boot/grub/grub.conf file here.On this partitcular laptop grub made windows which was installed first unmountable and made its self unbootable. I know this is unheard of but I did this back to back with the same results.
Your Hard disks partition structure doesn't look good. /dev/sda2 is overlapping sda3.
In that case, you could have set hiddenmenu and 1 sec timeout for Ubuntu GRUB.I wanted Ubuntu to directly boot and just have one grub screen.
What is the situation now? You have fresh Windows OS installation which is not booting up by default. Fedora's GRUB is also not working and you are using boot disk to boot Fedora and Windows OS. Am I correct?
Which version of Fedora and Windows OS are you using?It is amazing what you can accomplish if you do not care who gets the credit.
New Users: Read This First


Reply With Quote