Linux - Newbie This 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.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
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.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
![Reply](https://www.linuxquestions.org/questions/images/buttons/reply.gif) |
11-07-2009, 06:13 AM
|
#1
|
LQ Newbie
Registered: Nov 2009
Posts: 3
Rep:
|
A mount of filesystem failed
hi to everybody, I have a problem that I don't succeed in resolving...
I passed from 9.4 to ubuntu 9.10 to the beginning been all right everything, but when I restart the pc i found this:
mount of filesystem failed
4c291a-bc0f-49ab-8936-a6e222d5065
A MAITENANCE SHELL WILL NOW BE STARTED
CONTROL-D will terminate this shell and re-try
root@foura-laptop:
what can I do? please, I am writing the thesis and I need the computer.
Thanks
bacy
|
|
|
11-07-2009, 06:40 AM
|
#2
|
LQ 5k Club
Registered: Nov 2002
Location: Somewhere inside 9.9 million sq. km. Canada
Distribution: Slackware 15.0, current, slackware-arm-currnet
Posts: 6,336
|
You have something wrong in your /etc/fstab file for the partition that did not mount. Open an editor, copy and paste the contents of the /etc/fstab file here.
When you upgraded, did you format any partitions beisdes the '/' ( root partition )? Just a guess, 9.10 is using ext4 by default. So this may not match the fstype of the partiton(s) not mounting.
|
|
|
11-07-2009, 06:50 AM
|
#3
|
Member
Registered: May 2008
Posts: 97
Rep:
|
This problem is because the /(root) file system has file system corruption errors.
Identify the root file system device name using,
Depending on the output you get run a file system check on the partition. If it's a ext4 file system,
where /dev/sdaX is the / partition. If it's a ext3 file system then you need to run fsck.ext3 /dev/sdaX
|
|
|
11-07-2009, 07:31 AM
|
#4
|
LQ Newbie
Registered: Nov 2009
Posts: 3
Original Poster
Rep:
|
Quote:
Originally Posted by eth1
This problem is because the /(root) file system has file system corruption errors.
Identify the root file system device name using,
Depending on the output you get run a file system check on the partition. If it's a ext4 file system,
where /dev/sdaX is the / partition. If it's a ext3 file system then you need to run fsck.ext3 /dev/sdaX
|
what means of this: "Identify the root file system device name using"
you must think that I am ignorant in this field...I don't understand anything!
|
|
|
11-07-2009, 07:36 AM
|
#5
|
LQ Newbie
Registered: Nov 2009
Posts: 3
Original Poster
Rep:
|
you must think that I am ignorant in this field, I don't understand anything!
you explain to a child as to resolve her problem...
thanks of your patience
:-(
|
|
|
11-07-2009, 10:11 AM
|
#6
|
LQ 5k Club
Registered: Nov 2002
Location: Somewhere inside 9.9 million sq. km. Canada
Distribution: Slackware 15.0, current, slackware-arm-currnet
Posts: 6,336
|
bacy,
Here is what you were asked to do. I did it on my system, and am posting the results to show you how.
Open a konsole, and use the 'su' command to get root privileges.
Quote:
[cliff@Duelie:~]$ su
Password:
[root@Duelie cliff]# fdisk -l
Disk /dev/sda: 160.0 GB, 160040803840 bytes
255 heads, 63 sectors/track, 19457 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Disk identifier: 0x16001600
Device Boot Start End Blocks Id System
/dev/sda1 * 1 1784 14329948+ 83 Linux
/dev/sda2 1785 19457 141958372+ 5 Extended
/dev/sda5 1785 2038 2040223+ 82 Linux swap / Solaris
/dev/sda6 2039 19457 139918086 83 Linux
|
You need the root password, you would set that up at install time. Then run the command 'fdisk -l' ( without the quotes ).
The ID field identifies the file system type. 83 is ext3. 82 is swap file system.
Once you know what partition number, and the file system, you run the command 'fsck.ext4 /dev/sdaX' This would be for ext4, the default for Ubuntu 9.10. You need to use the correct partition number, my system has sda1 and sda6. Yours will have possibly the same, or different depending on the types of harddrives, and the partitioning scheme you have.
Hope this makes it easier to follow.
|
|
|
11-07-2009, 10:13 AM
|
#7
|
Member
Registered: Sep 2007
Location: Missouri
Distribution: CentOS, and many others
Posts: 34
Rep:
|
Use the fdisk -l command to find out which partition has the / mount point, and then run the fsck command on that partition.
|
|
|
11-12-2009, 01:47 PM
|
#8
|
LQ Newbie
Registered: Nov 2009
Posts: 2
Rep:
|
I get this message, too, after rebooting.
I did fdisk -l
Mine shows that Linus is on dev/sda1 (boot) and dev/sda5
I typed fsck.ext4/dev/sda1
and got bash: fsck.ext4/dev/sda1: No such file or directory
I get the same when I try sda5
|
|
|
11-12-2009, 05:14 PM
|
#9
|
LQ Newbie
Registered: Mar 2009
Location: Sri Lanka
Distribution: Ubuntu 9.10
Posts: 13
Rep:
|
Quote:
Originally Posted by kihitara
I typed fsck.ext4/dev/sda1
and got bash: fsck.ext4/dev/sda1: No such file or directory
|
You have to put a space after fsck.ext4 . That means in your case, the command would be,
Code:
fsck.ext4 /dev/sda1
hth
|
|
|
11-12-2009, 06:59 PM
|
#10
|
LQ Newbie
Registered: Nov 2009
Posts: 2
Rep:
|
Ahhhh thank you. Well, I have reinstalled the whole system and it seems to be working so far (this is about install 10... so I'm not holding my breath). If it happens again, I will definitely do that. Thanks. ![Smilie](https://www.linuxquestions.org/questions/images/smilies/smile.gif)
|
|
|
All times are GMT -5. The time now is 10:59 PM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|