LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 01-31-2008, 09:07 PM   #1
fitz_lq
LQ Newbie
 
Registered: Jan 2008
Location: Denver
Distribution: Slackware
Posts: 4

Rep: Reputation: 0
Grub installed on IDE wont mount root filesystem on SATA


The system layout is:

/dev/hda1 /boot (hd0,0) IDE drive
/dev/hda2 / (hd0,1)
/dev/sda1 /alt_root (hd1,0) Was SCSI, now SATA 1
/dev/sdb1 /other (hd2,0) SATA 2
(other non-essential partitions omitted)

The device /dev/sda1 used to be SCSI, and my problem started when it died and I replaced it with a SATA drive.

The grub script for the old SCSI drive was:

title 12.0 -- 2.6.21.5 -- generic smp / new installation
root (hd0,0)
kernel /vmlinuz-generic-smp-2.6.21.5-smp ro root=/dev/sda1 hdb=ide-cd hdc=ide-cd
initrd /initrd-generic-smp-2.6.21.5-smp

This worked. I replaced the drive, and I can no longer get the new drive to mount as /.

Grub has been installed in /boot. It was re-installed after the SCSI to SATA switch, just to make sure things were set up right. It was installed with:

system: grub
grub> root (hd0,0)
grub> setup

I boot the new drive. Once up, I get:

cat /proc/cmdline; df /
ro root=/dev/sda1 hdb=ide-cd hdc=ide-cd
Filesystem 1K-blocks Used Available Use% Mounted on
/dev/hda2 117679196 11459632 100241724 11% /

I looked around on the web, and found something that said that the grub root needs to be set to the system root. Did not appear to be required before, but I changed the script to:

title 12.0 -- 2.6.21.5 -- generic smp / new installation
root (hd1,0)
kernel /vmlinuz-xyzzy ro root=/dev/sda1
initrd /initrd-xyzzy

I purposely did NOT place /*-xyzzy files on the disk. Grub would not boot as it could not find the kernel (yes, hd1 is really hd1). I installed the kernel and initrd files, it boots, but the root partition is still /dev/hda2.

What do I need to do to get grub to give me the right root? I know I could install grub on /sda, but that seems to be a bit much to fix something that used to work...

Any help or hints welcome.
 
Old 01-31-2008, 09:57 PM   #2
kilgoretrout
Senior Member
 
Registered: Oct 2003
Posts: 2,987

Rep: Reputation: 388Reputation: 388Reputation: 388Reputation: 388
In your bios setup what is the boot order of your hard drives? Make sure your ide hda drive is first followed by your new sata drive. At boot, grub enumerates the drives based on their boot order in the bios setup. The hard drive first in the bios boot order is usually given hd0 and the second one is given hd1, etc. This can change after the linux kernel loads, especially when you have both ide and sata drives. I've had instance where grub designates my sata drive hd0 at boot but if I check from a grub prompt after I boot into linux, the same drive was designated hd1. It can be very confusing.

You can check this out by going to a grub prompt at boot, usually by hitting the Esc key at the boot selection screen then "C" to get to a grub prompt. It varies by distro. Once at the grub prompt, run:

grub> find /sbin/init

That will tell you how grub is designating your root partitions(i.e. where /sbin/init is located) at boot. Note the output; it should look like:

(hd0,1)
(hd1,0)

If not, grub is seeing the partitions differently at boot than it does after the kernel is loaded.

Last edited by kilgoretrout; 01-31-2008 at 10:00 PM.
 
Old 01-31-2008, 09:58 PM   #3
aus9
LQ 5k Club
 
Registered: Oct 2003
Location: Western Australia
Distribution: Icewm
Posts: 5,842

Rep: Reputation: Disabled
each drive has its own mbr....and whether a mbr is visible or not depends on the bios.

if you bios allows boot order to be ide drive first....it it better to have grub in that mbr......but sata drives should be faster

Grub has been installed in /boot...is misleading unless you mean that you re-installed grub into the first partition....yet if I am reading you corrrectly, / was and always was on hda2.....please explain if I am wrong.

so sort out your bios for boot order...if you are happy for ide b4 sata
device.map file does not change

relink grub so its in the mbr of the ide drive hda...and links to hda1

root (hd0,0)
setup (hd0)

but if you stay with hda...your kernel line was / is a mess....kernels 2.6 and later can handle scsi or sata drives.

suggest
kernel /vmlinuz-(version) root=/dev/hda

2) if that is not what you meant or not what you want....because you want sata drive to be where / is....please be as explicit as possible thanks
 
Old 02-01-2008, 12:53 AM   #4
fitz_lq
LQ Newbie
 
Registered: Jan 2008
Location: Denver
Distribution: Slackware
Posts: 4

Original Poster
Rep: Reputation: 0
More info

Ok, I have more info.

I created a unique file on /dev/hda1, /dev/hda2, and /dev/sda1. I have verified that (hd0,0) is /dev/hda1, (hd0,1) is /dev/hda2, and that (hd1,0) is /dev/sda1 as far as the booting grub is concerned. These are the same mappings I see if I look in device.map. Everything here is consistent. That is one of the reasons I wanted grub installed on the IDE drive. It should be the first drive in all cases.

I went to the BIOS and verified that the boot order for the machine is the IDE device, sata1, and then sata2.

I messed up the cut/paste operations I did to post the original info, the 'setup' command for grub installed grub in the mbr for the IDE disk (hd0).

I am attempting to set the system up so I can boot either /dev/hda2 OR /dev/sda1 as the root partition for linux. I like to be able to install an upgrade, test it, and then upgrade my production partition. /dev/hda2 is the test root partition, /dev/sda1 is the production root partition. During this test process, I boot back and forth many times, and do it quite frequently over the network (changing the default value in menu.lst and rebooting). I am now that I am happy with my test upgrade, and am attempting to upgrade the production version on /dev/sda1. Unfortunately, I can no longer get it to mount.

To answer the other question that I know is coming, the /etc/fstab file on /dev/sda1 (the one that I cant seem to mount) correctly lists /dev/sda1 as the partition to mount on /.
 
Old 02-01-2008, 01:03 AM   #5
syg00
LQ Veteran
 
Registered: Aug 2003
Location: Australia
Distribution: Lots ...
Posts: 21,126

Rep: Reputation: 4120Reputation: 4120Reputation: 4120Reputation: 4120Reputation: 4120Reputation: 4120Reputation: 4120Reputation: 4120Reputation: 4120Reputation: 4120Reputation: 4120
I'd doubt it has anything at all to do with grub - it just loads the kernel (and initrd if demanded).
The initrd has to have the support for the pivot_root to succeed. I'd be looking there - except I never use initrd of course ...
 
Old 02-01-2008, 01:23 AM   #6
aus9
LQ 5k Club
 
Registered: Oct 2003
Location: Western Australia
Distribution: Icewm
Posts: 5,842

Rep: Reputation: Disabled
then to make troubleshooting easier, especially if a kernel compile is suspect treat it as a simple dual boot

title hda
root (hd0,0)
kernel /vmlinuzetc root=/dev/hda1
initrd /initrdetc

title sata
root (hd1,0)......assuming you have a /boot folder not separate /boot partition
kernel /boot/vmlinuzetc root=/dev/sda1
initrd /boot/initrdetc

I am suggesting you can have one boot partition on hda that services hda
and one boot sub-folder to / = sda1.....but you don't mention if you have a /boot on sda....but I am suggesting you should rather than share

so bios jumps to mbr ide jumps to menu list on ide
hda is booted as above...sda is booted with kernel and initrd lines needed a /boot prefix

if that is wrong and you have a separate /boot partition on sda you know what to do...or read my signature
 
Old 02-01-2008, 08:48 AM   #7
fitz_lq
LQ Newbie
 
Registered: Jan 2008
Location: Denver
Distribution: Slackware
Posts: 4

Original Poster
Rep: Reputation: 0
More info still

I am treating this as just another dual boot, is why I am so confused.

The two entries in my menu.lst file that are important are (there are a few others that I haven't cleaned up yet):

title 12.0 -- 2.6.21.5 -- generic smp / new installation
root (hd1,0)
kernel /vmlinuz-xyzzy ro root=/dev/sda1
initrd /initrd-xyzzy

title 12.0 -- 2.6.21.5 generic smp
root (hd0,0)
kernel /vmlinuz-generic-smp-2.6.21.5-smp ro root=/dev/hda2 hdb=ide-cd hdc=ide-cd
initrd /initrd-generic-smp-2.6.21.5-smp

The first boots and mounts /dev/hda2 as /.
The second boots and mounts /dev/hda2 as /.
Both have kernels/initrds located in the places specified above.

This same kernel/initrd used to work when /dev/sda1 was real SCSI and not a SATA drive, so I assume that pivot_root support was/is available during the boot. The thing that was interesting is that before, both entries had 'root (hd0,0)' entries, and they both worked.
 
Old 02-01-2008, 11:13 AM   #8
kilgoretrout
Senior Member
 
Registered: Oct 2003
Posts: 2,987

Rep: Reputation: 388Reputation: 388Reputation: 388Reputation: 388
If it was a kernel compile or initrd problem with sata , it seems you would be getting a kernel panic when using the sata drive root. I can't think of any circumstance where a recent 2.6 kernel would designate a ide drive, /dev/hda2, with an sda1 format but there may be kernel options which do that and that would only show up when a sata drive was attached. Somehow, your root=/dev/sda1 entry is mapping root to /dev/hda2 and for the life of me I can't figure out how that could be possible.

A lot of recent distros have gone to designating the root= entry in grub using the partition UUID instead of the device file. This is mainly due to the confusion caused by rolling all the ide drives into libata and giving ide drives sdx device file names in the recent kernels. They are also using UUID designations in fstab. Instead of using the device file, try using the UUID designation for sda1 in your grub entry for the new kernel. UUID will always point to sda1 regardless of the kernel naming. Boot up and run as root:

# blkid -s UUID

That will spit out the UUID indentifers for all recognized partitions. Find the one for sda1 and use that in your grub entry instead of the sda1 device. To demonstrate the syntax for UUID, here's how my sidux entry looks which is using UUID for everything instead of device files:

title sidux
kernel (hd2,7)/boot/vmlinuz root=UUID=7b5f311b-8108-45dd-ba17-ba50b8ea0a47 ro quiet vga=791
initrd (hd2,7)/boot/initrd.img

At least with the above, you can be sure that grub is unambiguously being directed to sda1 for root.
 
Old 02-01-2008, 06:13 PM   #9
aus9
LQ 5k Club
 
Registered: Oct 2003
Location: Western Australia
Distribution: Icewm
Posts: 5,842

Rep: Reputation: Disabled
excellent idea....but I have a single sata...on Mdv.../dev/sda still works.

however, I appreciate all of fitz_lq attemps and just to be explicit how is sata set up for /boot....ie is sata /boot a subfolder to / or did you attempt to share it with hda /boot.

from your first post, I agree I am not interested in your non-essential partitions just the sata /boot either as a sub-folder or partition please
 
Old 02-01-2008, 06:49 PM   #10
aus9
LQ 5k Club
 
Registered: Oct 2003
Location: Western Australia
Distribution: Icewm
Posts: 5,842

Rep: Reputation: Disabled
kilgoretrout....a small hijack

thanks for your uuid command.....I will probably update my grub howto as you think this may be an issue for some....as I said I never discovered it...as I have only one sata.

2) ways of uuid I found are...I use root powers for these:
blkid -s UUID
ls -l /dev/disk/by-uuid/
vol_id -u /dev/sda1

3) are you also suggesting that the OP should adopt an uuid fstab?

eg http://linux.byexamples.com/archives...tab-with-uuid/

thanks for any feedback and of course I hope this helps the OP
 
Old 02-01-2008, 07:00 PM   #11
syg00
LQ Veteran
 
Registered: Aug 2003
Location: Australia
Distribution: Lots ...
Posts: 21,126

Rep: Reputation: 4120Reputation: 4120Reputation: 4120Reputation: 4120Reputation: 4120Reputation: 4120Reputation: 4120Reputation: 4120Reputation: 4120Reputation: 4120Reputation: 4120
UUID (and LABEL) are fine in fstab.
Do *NOT* recommend them as generally available to the boot loader. These can only be used this early if the initrd has support for them. I suspect Fedora will fail if you pass a UUID to grub as the initrd probably only has LABEL support.
 
Old 02-01-2008, 07:02 PM   #12
jay73
LQ Guru
 
Registered: Nov 2006
Location: Belgium
Distribution: Ubuntu 11.04, Debian testing
Posts: 5,019

Rep: Reputation: 133Reputation: 133
UUID? Just look in /dev/disk, you'll find that there are actually four ways of defining a partition using /dev/disk. I defined mine by ID for a change (using Debian, not Fedora - can't say what Fedora will do).

Last edited by jay73; 02-01-2008 at 07:04 PM.
 
Old 02-01-2008, 08:25 PM   #13
aus9
LQ 5k Club
 
Registered: Oct 2003
Location: Western Australia
Distribution: Icewm
Posts: 5,842

Rep: Reputation: Disabled
syg00

you appear to be correct
for others FYI see the label thread that David chats about here
http://www.groupsrv.com/linux/post-839460.html


I have just tested uuid for grub....and it works for me. Mdv using a distro kernel and initrd. I have not bothered to test fstab.
 
Old 02-03-2008, 02:34 AM   #14
aus9
LQ 5k Club
 
Registered: Oct 2003
Location: Western Australia
Distribution: Icewm
Posts: 5,842

Rep: Reputation: Disabled
syg00 and kilgoretrout and any interested kernel hacker,

I can not hijack this thread any longer, altho the OP has not yet replied to the suggestions.

instead I have started a post on initrd and UUID support because it is not clear to me, that is the issue.

many thanks to all that have the time to read and offer any feedback.

http://www.linuxquestions.org/questi...6/#post3044296
 
Old 02-04-2008, 02:52 PM   #15
fitz_lq
LQ Newbie
 
Registered: Jan 2008
Location: Denver
Distribution: Slackware
Posts: 4

Original Poster
Rep: Reputation: 0
Things now work, sorry about the delay

Sorry about the delay, but I got blasted at work over the weekend.

Why the UUID should fix the problem, I have no idea, but I am a much happier camper now. Things are back to working. I am still puzzled as to what exactly caused the problem, so will continue to look around. If I can determine a cause, I will come back and add more detail.

Thanks to one and all for the comments.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
cant mount ide#1 SATA hard disk, sugar2 Linux - Hardware 3 11-02-2007 06:36 PM
Dual Boot XP w/ Grub (IDE + SATA) TruckStuff Linux - General 3 09-25-2006 09:01 PM
Grub on IDE - xp on SATA jasonwstone Linux - Newbie 2 09-25-2006 04:33 PM
sata HD wont mount manicman Linux - Newbie 4 02-26-2006 08:33 AM
Kernel wont mount root filesystem, complains about pivot_root kofrad Linux - Hardware 4 09-29-2004 10:59 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 12:20 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration