Other How to mount fusefs-lkl XFS on boot?

  • Thread starter Thread starter Deleted member 66267
  • Start date Start date
D

Deleted member 66267

Guest
I know how to mount it manually:

sudo lklfuse -o type=xfs /dev/ada1s1 /mnt

But I don't know how to add it to /etc/fstab to make it automatically mount on boot.
 
For ntfs-3g you use something like this:
Code:
/dev/ada1p1     /mnt     ntfs   mountprog=/usr/local/bin/ntfs-3g,late,rw    0   0
So for lklfuse I'd try this:
Code:
/dev/ada1p1     /mnt     xfs   mountprog=/usr/local/bin/lklfuse,late,rw    0   0
Don't know if this works though, I never tried it myself.
 
Back
Top