Linux - NewbieThis Linux forum is for members that are new to Linux.
Just starting out and have a question?
If it is not in the man pages or the how-to's this is the place!
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Introduction to Linux - A Hands on Guide
This guide was created as an overview of the Linux Operating System, geared toward new users as an exploration tour and getting started guide, with exercises at the end of each chapter.
For more advanced trainees it can be a desktop reference, and a collection of the base knowledge needed to proceed with system and network administration. This book contains many real life examples derived from the author's experience as a Linux system and network administrator, trainer and consultant. They hope these examples will help you to get a better understanding of the Linux system and that you feel encouraged to try out things on your own.
Click Here to receive this Complete Guide absolutely free.
Hello. I run Mandrake 9.1. I will be forced to install Windows XP in a week, by doing so It will overwrite the MBR, so I wont be able to run the GRUB to decide which OS I wanna boot. I think the only solution is to copy the LILO or GRUB (either one) to a floppy disc and boot from it after installing XP. the problem---> I dont know how to install grub or Lilo in a floppy.
If there is any other way around please tell me, otherwise I would appreciate any help u can give me.
creating a grub boot disk is easy, first insert a floppy, if it's not formatted do:
mke2fs /dev/fd0
then mount it, for example on /mnt/floppy:
mount -t ext2 /dev/fd0 /mnt/floppy
then do:
grub-install --root-directory=/mnt/floppy 'fd0'
and that's it you got yourself a grub bootdisk. When you want to reinstall grub into MBR just boot with the disk, then after you get to the grub prompt first change the root to where your /boot directory is by doing
root (hd0,0)
if its in the first partition of primary master
then:
setup (hd0)
to reinstall it in mbr
You can do it using the installation CD of mandrake. I forget the exact procedures but search here on the forum and you'll find it.
Another way to do it is to make a boot floppy using the tool available in mandrake control center ->boot. Start mandrake using the floppy and then reinstall lilo or grub once you have mandrake up and running. BTW, having a boot floppy is always a good idea.
This is one of the solutions that I got off the net. It's for RedHat, but should work with Mandrake also.
Put the redhat boot disk you created on the installation on the floppy
drive, boot the system and run grub command
Remember that for grub (hd0,1) means hda (primary controller master), second partition.
Now we need to tell grub where are the grub files:
If you know where they are type something like:
root (hd0,1)
else if you have no idea, type:
find /boot/grub/stage1
and then the root command with the correct parameters
setup (hd0)
to install it on hd0 that is MBR of the first HD
type quit and reboot
The menu will appear again.
The other way is :
If you didn't create the boot disk, boot with the Red Hat Linux CD number 1 and choosse rescue mode typing:
linux rescue
Now you need to repair the ext3 filesystem because now it's bigger than before and the journal file must be created again
First, check the filesystem:
fsck.ext3 /dev/hda2
Now, create again the journaling ext3 file:
tune2fs -j /dev/hda2
Now mount the root filesystem on /mnt/sysimage and run grub
mount -t ext2 /dev/hda2 /mnt/sysimage
cd /mnt/sysimage
cd sbin
grub
Once started, GRUB will show the command-line interface . First, set the GRUB's root device1 to the boot directory, like this:
grub> root (hd0,1)
If you are not sure which partition actually holds these files, use the command find, like this:
grub> find /boot/grub/stage1
This will search for the file name /boot/grub/stage1 and show the devices which contain the file.
Note added by: John Neuhaus
If you are using a separate /boot partition , as the official documentation says:
"... if you have the partition /boot and you install GRUB images into the directory /boot/grub, GRUB recognizes that the images lies under the directory /grub but not /boot/grub"
Then if 'find /boot/grub/stage1' does not find the file, try 'find /grub/stage1'
Once you've set the root device correctly, run the command setup :
grub> setup (hd0)
This command will install GRUB on the MBR in the first drive.
Thank you all for the help, I have my problem totally fixed now and can install the windoze without worries.
I appreciate all your concern.
Have a good day
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.