• Welcome to Overclockers Forums! Join us to reply in threads, receive reduced ads, and to customize your site experience!

My root ext4 gets mounted as ext2

Overclockers is supported by our readers. When you click a link to make a purchase, we may earn a commission. Learn More.

Shelnutt2

Overclockers Team Content Editor
Joined
Jun 17, 2005
Location
/home/
I'm on a fresh funtoo install ontop of a fakeraid 0 array. I've build my kernel from source and included my filesystem drivers and I used genkernel to build by initrd (so dmraid can load). Everything is working fine except my root is mounted wrong. Here are two lines I see in dmesg:

Code:
[    0.223341] EXT4-fs: Unable to register as ext3 (-16)

Code:
[    8.603928] EXT3-fs (dm-4): error: couldn't mount because of unsupported optional features (240)
[    8.622661] EXT4-fs (dm-4): mounted filesystem with ordered data mode

It mounts everything else fine including my /home which is ext4.

Code:
# /etc/fstab: static file system information.
#
# The root filesystem should have a pass number of either 0 or 1.
# All other filesystems should have a pass number of 0 or greater than 1.
#
# NOTE: If your BOOT partition is ReiserFS, add the notail option to opts.
#
# See the manpage fstab(5) for more information.
#
# <fs>					<mountpoint>		<type>		<opts>		<dump/pass>

/dev/mapper/isw_cfcibibgej_RAID01		/boot		ext2		noauto,noatime	1 2
/dev/mapper/isw_cfcibibgej_RAID05		none		swap		sw		0 0
/dev/mapper/isw_cfcibibgej_RAID06		/		ext4		noatime		0 1
/dev/mapper/isw_cfcibibgej_RAID07		/home		ext4		noatime		0 1
/dev/mapper/isw_cfcibibgej_RAID08		/mnt/ubuntu	ext4		noatime		0 2


/dev/mapper/isw_cfcibibgej_RAID02		/mnt/windows	ntfs-3g		noatime		0 2
/dev/mapper/isw_cfcibibgej_RAID09		/mnt/storage	ntfs-3g		noatime		0 2


/dev/cdrom					/mnt/cdrom	auto		noauto,user	0 0
/dev/floppy					/mnt/floppy	auto		noauto,user	0 0

proc						/proc		proc		defaults	0 0
shm						/dev/shm	tmpfs		nodev,nosuid,noexec 0 0
 
You know, I remember MRD just went through something similar, I don't know why I didn't add in the kernel parameter. I'll see if that fixed it in a minute.


edit:
I'm still having the same issue. I'm going to move to btrfs soon here though.
 
Last edited:
Back