mount ext4 partition - Operation not permitted

operation not permitted is usually when you try to mount rw an unclean fs. im not sure ext4 rw is supported at all. but -o ro should work
 
attached
Thanks covacat!

That leads us to my next question OP: what does # file -s /dev/ada2s3 tell you? Are we sure this is actually EXT4?
yes
operation not permitted is usually when you try to mount rw an unclean fs. im not sure ext4 rw is supported at all. but -o ro should work
tried same
mount -t ext2fs [I]special[/I] [I]mountpoint[/I]?

you’ll also need to kldload ext2fs
not help
 

Attachments

Please provide the output of running the following commands under script(1):
ls -l /dev/ada2*
gpart list ada2
kldload ext2fs
file -s /dev/ada2s3
ls -ld /mnt
mount -t ext2f /dev/ada2s3 /mnt
 
Back
Top