Walrii
Group: Members
Posts: 3
Joined: Aug. 2006 |
|
Posted: Aug. 23 2006,16:44 |
|
No ext3 support in DSL?
I really think DSL should have ext3 support, since the advantages over ext2 are very significant. The "install to hard drive" script/program asks the user if they want ext3 or ext2, so it might as well actually be included
HOWEVER, if you wanna get rid of the error, do this: 1) (as root, probably) do this: "tune2fs -O ^has_journal /dev/partition" 2) edit your /etc/fstab file so that your partition is being mounted as ext2 (in other words, replace "ext3" with "ext2" as necessary)
And enjoy the checking for filesystem integrity for minutes on bootup if the power gets cut! (But hey, at least you're warning free now)
EDIT: If you get an error that the partition must be mounted in read-only mode, do this before running the tune2fs command: "mount -o remount,ro /dev/partition" then, if you'd like "mount -o remount,rw /dev/partition" to get it back to normal (ie no reboot required)
|