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.
 |
GNU/Linux Basic Guide
This 255-page guide will provide you with the keys to understand the philosophy of free software, teach you how to use and handle it, and give you the tools required to move easily in the world of GNU/Linux. Many users and administrators will be taking their first steps with this GNU/Linux Basic guide and it will show you how to approach and solve the problems you encounter.
Click Here to receive this Complete Guide absolutely free. |
|
 |
04-24-2005, 11:32 PM
|
#1
|
|
Member
Registered: Mar 2005
Location: Ice Station Alert AFB
Distribution: Gentoo
Posts: 166
Rep:
|
Wrong version of FSCK: HOW TO ?
After a few emerges, I now get the following error on BOOT up.
Code:
fsck.ext3: Filesystem has unsupported feature(s) (/)
e2fsck: Get a newer version of e2fsck!
/dev/hda1: clean, 40/10040 files, 8481/40128 blocks
*Fsck could not correct all errors, manual repair needed. [!!]
Give root password for maintainence
(or type control-D for normal startup):
#
If I just accept (^d) everything boots okay, but I should update this file:
But when I try emerge fsck or emerge e2fsck, I get package not found...
What do I really need to emerge a new copy of fsck? what is it a part of?
----------------------------------------------
I've already tried:
But on BOOT I get the same error as before: Is there some other package I must update, or do I have to edit a config file or make a link? Previously I had a Vidalinux1 system up several times, but the boot and current root are 100% Gentoo.
|
|
|
|
04-26-2005, 06:52 AM
|
#2
|
|
Senior Member
Registered: Jan 2004
Location: Montpellier (France)
Distribution: Gentoo
Posts: 1,014
Rep:
|
Hello,
Have you tried to give root password and then run fsck.ext3 manually (without options) on your root partition???
|
|
|
|
04-26-2005, 09:42 PM
|
#3
|
|
Member
Registered: Mar 2005
Location: Ice Station Alert AFB
Distribution: Gentoo
Posts: 166
Original Poster
Rep:
|
I don't even know what fsck does!
|
|
|
|
04-27-2005, 07:07 AM
|
#4
|
|
Senior Member
Registered: Jan 2004
Location: Montpellier (France)
Distribution: Gentoo
Posts: 1,014
Rep:
|
fsck does a filesystem check which is very usefull when you have an unexpected reboot. To make simple, this prog will for example at the next boot correct bugs on your filesystem due to an unexpected reboot whereas your PC did a write access on your disk.
So enter your root password and run: fsck.ext3 and answer yes to all the questions 
|
|
|
|
05-01-2005, 04:47 AM
|
#5
|
|
Member
Registered: Mar 2005
Location: Ice Station Alert AFB
Distribution: Gentoo
Posts: 166
Original Poster
Rep:
|
Okay, from your discussion I have the basic idea that fsck is something like Windows Scandisk or Checkdisk.
And like those programs, is almost compulsory when you have a freeze-up of crash.
Can you also tell me if there are any differences between the Windows version and the linux version, and also,
What is the difference between fsck and fsck.ext3 ? Are they different binary files?
|
|
|
|
05-01-2005, 07:45 AM
|
#6
|
|
Senior Member
Registered: Jan 2004
Location: Montpellier (France)
Distribution: Gentoo
Posts: 1,014
Rep:
|
difference between Windows utility and Linux one's... no idea  I've never really used the Windows one's
Quote:
|
What is the difference between fsck and fsck.ext3 ?
|
fsck is more general... I mean they are exactly the same if you consider the following:
Code:
fsck -t ext3 = fsck.ext3
so we can say that fsck do the same that fsck.something... but it has to find before the filesystem type to check the partition
|
|
|
|
05-28-2005, 04:01 AM
|
#7
|
|
LQ Newbie
Registered: May 2005
Posts: 5
Rep:
|
has anybody figured out this problem
I have the same problem on my laptop, running ubuntu hoary: unrecognized features of the / partition (ext3) -- get a newer version of e2fsck. The thing is, doing an e2fsck on a mounted partition is not recommended. Everything else is working just great, and (after trying Debian and Fedora), I am about to decide that ubuntu is the best solution for me and my computer... if it wasn't fro this!
Help please!
Vince
|
|
|
|
05-28-2005, 04:07 AM
|
#8
|
|
Member
Registered: May 2005
Location: India
Distribution: RHEL 4.0
Posts: 136
Rep:
|
ok the problem seems to be in your fstab file
Have u mounted any device in that file
If yes go to rescue mode and remove it
|
|
|
|
05-28-2005, 04:20 AM
|
#9
|
|
LQ Newbie
Registered: May 2005
Posts: 5
Rep:
|
Hi,
nope, it doesn't help.
Here is my fstab file now:
# /etc/fstab: static file system information.
#
# <file system> <mount point> <type> <options> <dump> <pass>
proc /proc proc defaults 0 0
/dev/hda4 / ext3 defaults,errors=remount-ro 0 1
/dev/hda3 /home ext3 defaults 0 2
/dev/hda2 none swap sw 0 0
#/dev/scd0 /media/cdrom0 udf,iso9660 ro,user,noauto 0 0
#/dev/hda1 /mnt/WinXP vfat defaults,auto,uid=95,gid=95 0 0
I've tried to keep only what is vital, but still have the same error message.
Last edited by Vince-ubuntu; 05-28-2005 at 04:51 AM.
|
|
|
|
05-28-2005, 04:42 AM
|
#10
|
|
Member
Registered: May 2005
Location: India
Distribution: RHEL 4.0
Posts: 136
Rep:
|
Quote:
|
/dev/hdb5 / ext2 defaults 1 1
|
well this for example how a default root shuld be mounted
|
|
|
|
05-28-2005, 04:48 AM
|
#11
|
|
LQ Newbie
Registered: May 2005
Posts: 5
Rep:
|
yeah right.
for sure, I am not going to mount it as a ext2. I am not sure it is wise to remove the "errors=remount-ro" part. I guess I can try it. What's the worse that can happen ? ;-)
V
|
|
|
|
05-28-2005, 04:58 AM
|
#12
|
|
LQ Newbie
Registered: May 2005
Posts: 5
Rep:
|
OK, as I expected, I have tried with:
/dev/hda4 / ext3 defaults 1 1
and that didn't help.
Thanks anyway...
V
|
|
|
|
05-28-2005, 05:12 AM
|
#13
|
|
Member
Registered: May 2005
Location: India
Distribution: RHEL 4.0
Posts: 136
Rep:
|
did u check out for bad sectors on your HDD
Well onto my opinion you should build a fstab file of default configuration and see if it works or not
|
|
|
|
| Thread Tools |
Search this Thread |
|
|
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
All times are GMT -5. The time now is 07:25 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
|
|