![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum Rules | FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| Linux RedHat, Ubuntu, SUSE, Fedora, Debian, Mandriva, Slackware, Gentoo linux, PCLinuxOS. All Linux questions here! |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Ask Linux.com: Prepping for updates, GRUB versus LILO, and forum tools | iBot | UNIX and Linux RSS News | 0 | 05-10-2008 06:40 AM |
| Blank GRUB Screen | panchpan | SUN Solaris | 2 | 10-17-2007 03:50 AM |
| Is there a way to get rid of GRUB and any OS selector so that Linux starts.... | mattzway | UNIX for Dummies Questions & Answers | 0 | 07-12-2005 07:43 AM |
| in need of serious help with Grub and Linux, Windows XP | mattzway | UNIX for Dummies Questions & Answers | 11 | 07-12-2005 07:34 AM |
| Can't get GRUB to boot Linux!!! | cstovall | UNIX for Dummies Questions & Answers | 2 | 03-03-2003 12:15 PM |
|
|
Submit Tools | LinkBack | Thread Tools | Display Modes |
|
#1
|
|||
|
|||
|
How to get back Linux Grub screen
I had Linux and win98 installed on my PC, then I installed winXP and it has replaced the Grub Bootloader, now on booting up I get to see only win98 and winXP to choose from, Now how do I get Back the Grub screen with Linux as a option or how do I boot into linux.
|
| Forum Sponsor | ||
|
|
|
#2
|
|||
|
|||
|
Boot on your GNU/Linux distro's recovery CD or floppy recovery disk you made when you installed your system. Once booted up, mount your filesystem. Once you have your root partition mounted, just chroot to the mounted filesystems. The re run your grub installation.
Bascially, boot up, create a mount point, mount the necessary partitions accordingly. I am not sure of the command to re-run grub, as I only use LILO. For example after booting the recovery medium: cd / mkdir /mnt2 mkdir /mnt/boot mkdir /mnt/usr mount /dev/hda1 /mnt2 mount /dev/hda2 /mnt/boot mount /dev/hda3 /mnt2/usr chroot /mnt2 Then re-run your grub bootloader as per instructions. |
|
#3
|
|||
|
|||
|
The command to install a GRUB bootloader is
grub-install /dev/whatever |
|
#4
|
|||
|
|||
|
Thanx alot guys, I got my grub back
I did it this way
Invoked Grub, Set the GRUB's root device1 to the partition containing the boot directory, like this: # grub> root (hd0,0) If you are not sure which partition actually holds this directory, use the command find,This will search for the file name /boot/grub/stage1 and show the devices which contain the file. # grub> find /boot/grub/stage1 #grub> setup (hd0) --This command will install the GRUB boot loader on the Master Boot Record (MBR) of the first drive. If you want to put GRUB into the boot sector of a partition instead of putting it in the MBR, specify the partition into which you want to install GRUB like this: #grub> setup (hd0,0) Pankaj |
|||
| Google The UNIX and Linux Forums |