Fedora Linux Support Community & Resources Center

Go Back   FedoraForum.org > Fedora 17/18 > Using Fedora
FedoraForum Search

Forgot Password? Join Us!

Using Fedora General support for current versions. Ask questions about Fedora and it's software that do not belong in any other forum.

Closed Thread
 
Thread Tools Search this Thread Display Modes
  #1  
Old 1st January 2009, 01:17 AM
marko's Avatar
marko Offline
Registered User
 
Join Date: Jun 2004
Location: Laurel, MD USA
Posts: 5,448
mount error - error mounting /dev/root on sysroot as ext3 : invalid argument

After updating to the current 2.6.27.9-159.fc10.x86_64 kernel I can't boot it due
to getting a mount error:
Quote:
mount: error mounting /dev/root on sysroot as ext3 : invalid argument
Note this PC is not using LVM and I'm using AHCI

I've tried several things I've found on google but none worked:

1) make a file /etc/sysconfig/mkinitrd containing:
Code:
MODULES="scsi_wait_scan"
and run
Code:
mkinitrd -v -f /boot/initrd-2.6.27.9-159.fc10.x86_64.img 2.6.27.9-159.fc10.x86_64
2) added to the grub boot line:
mod_scsi.scan=sync

3) finally I noticed after trying "2" that I could see a error about the mount
argument "norelatime" being invalid, but the mount man page says that's
still supported ? I want norelatime to reduce file system writes when I just
look at files.

Last edited by marko; 1st January 2009 at 01:27 AM.
  #2  
Old 1st January 2009, 01:41 AM
leigh123linux's Avatar
leigh123linux Offline
Retired Administrator
 
Join Date: Oct 2006
Posts: 21,509
I think you have the wrong option , it should be relatime


Code:
#
# /etc/fstab
# Created by anaconda on Sun Nov 30 01:40:43 2008
#
# Accessible filesystems, by reference, are maintained under '/dev/disk'
# See man pages fstab(5), findfs(8), mount(8) and/or vol_id(8) for more info
#
UUID=f372564c-f1a7-430e-b97f-b250812e2c30 /                       ext3    relatime,defaults        1 1
tmpfs                   /dev/shm                tmpfs   defaults        0 0
devpts                  /dev/pts                devpts  gid=5,mode=620  0 0
sysfs                   /sys                    sysfs   defaults        0 0
proc                    /proc                   proc    defaults        0 0
UUID=9b19eb90-bb6c-433d-90db-a24172ad3bfc swap                    swap    relatime,defaults        0 0
UUID=2686d410-8a80-422e-9d9a-03c158146ef8 /home/leigh/data	    ext3  relatime,defaults	1 2
UUID=71aa4c0f-3d5c-45fe-ba7f-bfd31a829a9d /home/leigh/data1	    ext3  relatime,defaults	1 2
UUID=1c158abd-408a-4d2c-a9b1-7b05bbdabf99 /home/leigh/development ext3  relatime,defaults	1 2
Code:
/dev/sdd2 / ext3 rw,relatime 0 0
/proc /proc proc rw 0 0
sysfs /sys sysfs rw 0 0
devpts /dev/pts devpts rw,gid=5,mode=620 0 0
tmpfs /dev/shm tmpfs rw 0 0
/dev/sdc1 /home/leigh/data ext3 rw,relatime 0 0
/dev/mapper/VOL1-LVM1 /home/leigh/data1 ext3 rw,relatime 0 0
/dev/sdb5 /home/leigh/development ext3 rw,relatime 0 0
none /proc/sys/fs/binfmt_misc binfmt_misc rw 0 0
sunrpc /var/lib/nfs/rpc_pipefs rpc_pipefs rw 0 0
gvfs-fuse-daemon /home/leigh/.gvfs fuse.gvfs-fuse-daemon rw,nosuid,nodev,user=leigh 0 0
/dev/sda2 /media/_1234 ext3 rw,nosuid,nodev,uhelper=hal 0 0
/dev/sdc2 /media/_123 ext3 rw,nosuid,nodev,uhelper=hal 0 0
/dev/sdd3 /media/_ ext3 rw,nosuid,nodev,uhelper=hal 0 0
/dev/sdb3 /media/_1 ext3 rw,nosuid,nodev,uhelper=hal 0 0
/dev/sdb1 /media/_123456 ext3 rw,nosuid,nodev,uhelper=hal 0 0
/dev/sdd1 /media/_12345678 ext3 rw,nosuid,nodev,uhelper=hal 0 0
/dev/sdb2 /media/_1234567 ext3 rw,nosuid,nodev,uhelper=hal 0 0
__________________
My Hardware
- CPU: AMD Phenom II X6 Hex Core 1055T 95W Edition @3.5Ghz
- Motherboard: Gigabyte GA-880GM-UD2H
- Cooler: Corsair H50 CPU Cooler
- RAM: Corsair Dominator 8GB (4x2GB) DDR3 1600MHz
- Graphics: Gigabyte GeForce GTS 450 OC 1024MB GDDR5
  #3  
Old 1st January 2009, 01:51 AM
marko's Avatar
marko Offline
Registered User
 
Join Date: Jun 2004
Location: Laurel, MD USA
Posts: 5,448
Hm, I took the "norelatime" out of /etc/fstab/ and replaced it with "noatime"
which should do about the same thing and the newest kernel still fails with:

mount (some message about norelatime being an unknown argument)
.....
mount: error mounting /dev/root on sysroot as ext3 : invalid argument

How norelatime can still show up at boot after I edited it out of the /etc/fstab
I don't understand. I was thinking it might be hidden in the initrd file
but I searched those and it didn't show:

strings /boot/initrd* | grep -i norelatime

gets no hits

BTW, "norelatime" is in the man page for mount as a valid option. Why would it cause the
kernel to not load?
  #4  
Old 1st January 2009, 04:21 AM
cluge Offline
Registered User
 
Join Date: Jan 2009
Posts: 1
>Hm, I took the "norelatime" out of /etc/fstab/ and replaced it with "noatime"
>which should do about the same thing and the newest kernel still fails with:

I had the same issue. After you replace norelatime in fstab with noatime, remake initrd (See post above). Let me know how it goes, I actually removed all atime settings and went back to the defaults, remade my initrd and got a clean boot.

-cluge
  #5  
Old 1st January 2009, 04:46 AM
marko's Avatar
marko Offline
Registered User
 
Join Date: Jun 2004
Location: Laurel, MD USA
Posts: 5,448
Cluge:

Yes, now it's working. It needed the new initrd file to be built after the fstab edit

thanks
  #6  
Old 16th April 2009, 11:11 PM
cniggeler Offline
Registered User
 
Join Date: Apr 2009
Posts: 7
Hi,

I have a test system with multiple Linuces on it and wanted to upgrade an ancient Fedora 5 with 10. Am using grub and also have SusSE 10.1 and Redhat 9 on the system.

Got the subject message, scrolled thru many a Google listing and applying in vain the suggestions (additions to boot KERNEL line, modifying initrd, even adding a file to initrd-xxxx-img).

With nothing working, on a lark I let Fedora rewrite the boot record (previously the grub loader was the one that came with SuSE). Success! I did have to clean up the new grub.conf, but I got that from the /boot/grub/grub.conf file in the SuSE partition.
  #7  
Old 5th February 2013, 09:20 AM
murali566 Offline
Registered User
 
Join Date: Feb 2013
Location: india
Posts: 1
windows_xp_2003chrome
Question Re: mount error - error mounting /dev/root on sysroot as ext3 : invalid argument

how can we edit all these files if OS is not booting up ?
  #8  
Old 5th February 2013, 11:00 AM
glennzo's Avatar
glennzo Offline
Un-Retired Administrator
 
Join Date: Mar 2004
Location: Salem, Mass USA
Posts: 13,929
linuxfedorafirefox
Re: mount error - error mounting /dev/root on sysroot as ext3 : invalid argument

murali566. Welcome to Fedora Forum. Since this thread is several years old I'm going to close it. It would be better if you start a new thread detailing your Linux issues.
__________________
Glenn
The Bassinator © ®


Laptop: Toshiba Satellite / Intel Core 2 Duo 1.73 GHz / 2GB / 160GB / Intel Mobile 945GM/GMS/GME/943/940GML Integrated Graphics
Desktop: BioStar MCP6PB M2+ / AMD Phenom 9750 Quad Core / 4GB / 1TB SATA / 500GB SATA / EVGA GeForce 8400 GS 1GB
Closed Thread

Tags
argument, error, ext3, invalid, mount, mounting, or dev or root, sysroot

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

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 On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
After hot power-off => "mount: error mounting /dev/root on /sysroot as ext3:" ceric Using Fedora 0 30th July 2009 10:27 PM
mount: error mounting /dev/root on /sysroot as ext3: No such file or directory Taniel Using Fedora 5 7th May 2009 08:59 AM
F10 won't boot up after upgrade: error mounting /dev/root on /sysroot as ext3: No suc klystron Using Fedora 4 25th February 2009 12:49 AM
Intel P965 ICH8: mount: error mounting /dev/root on /sysroot as auto: No such device lemaymd Hardware & Laptops 6 14th November 2007 10:19 PM


Current GMT-time: 18:30 (Monday, 20-05-2013)

TopSubscribe to XML RSS for all Threads in all ForumsFedoraForumDotOrg Archive
logo

All trademarks, and forum posts in this site are property of their respective owner(s).
FedoraForum.org is privately owned and is not directly sponsored by the Fedora Project or Red Hat, Inc.

Privacy Policy | Term of Use | Posting Guidelines | Archive | Contact Us | Founding Members

Powered by vBulletin® Copyright ©2000 - 2012, vBulletin Solutions, Inc.

FedoraForum is Powered by RedHat