Solved Accessing an ext4 partition

I was trying to access an ext4 partition using sysutils/e2fsprogs which seemed to work fine for ext2 and ext3 partitions, but then came accross this error
mount: /dev/ada0s3: Invalid argument

which is mentioned here Thread 72286 and this put me on to sysutils/fusefs-lkl. This worked fine from the command line but have been unable to make it work in /etc/fstab. There is a complaint about fuse not being loaded while booting although this error is not recorded in dmesg.
/etc/rc.conf contains.

Code:
kld_list="/boot/modules/i915kms.ko fuse"

Can anyone tell me what I'm missing?

I'm running FreeBSD 12.2-RELEASE.
 
IIRC, local filesystems are mounted BEFORE kld_list is processed.

Either set option late in fstab, or load fuse from /boot/loader.conf instead with fuse_load="YES".
 
Adding late in /etc/fstab worked fine. Many thanks,

I know have:
Code:
/dev/da0p8    /mnt/grub   fuse    rw,mountprog=/usr/local/bin/lklfuse,type=ext4,allow_other,late 0 0
 
Back
Top