Page MenuHomeFreeBSD

linux: improve FUSE support
ClosedPublic

Authored by trasz on Jun 1 2021, 7:34 PM.
Tags
None
Referenced Files
Unknown Object (File)
Tue, Mar 17, 10:17 AM
Unknown Object (File)
Sun, Mar 15, 2:52 AM
Unknown Object (File)
Sat, Feb 28, 4:35 PM
Unknown Object (File)
Feb 8 2026, 1:06 PM
Unknown Object (File)
Feb 7 2026, 10:24 PM
Unknown Object (File)
Jan 31 2026, 5:43 AM
Unknown Object (File)
Jan 3 2026, 6:57 PM
Unknown Object (File)
Dec 12 2025, 3:06 AM
Subscribers

Details

Summary

This fixes a number of AppImages; tested with
scribus-1.5.6.1-linux-x86_64.AppImage.

Reported By: probonopd

Diff Detail

Repository
rS FreeBSD src repository - subversion
Lint
Lint Passed
Unit
No Test Coverage
Build Status
Buildable 39654
Build 36543: arc lint + arc unit

Event Timeline

trasz requested review of this revision.Jun 1 2021, 7:34 PM

The code looks good to me. Was the problem that a Linux command like "mount -t fuse.ntfs ..." wouldn't work?

This revision is now accepted and ready to land.Jun 1 2021, 7:44 PM

Much weirder than that. Strace, on the AppImage I'm using for testing, shows this:

[pid  1792] mount("scribus-1.5.6.1-linux-x86_64.AppImage", "/tmp/.mount_scribuH15vRB", "fuse.scribus-1.5.6.1-linux-x86_6"..., MS_RDONLY|MS_NOSUID|MS_NODEV, "fd=5,rootmode=40000,user_id=0,gr"...) = 0

The fstype is fuse.scribus-1.5.6.1-linux-x86_64.AppImage; options are fd=5,rootmode=40000,user_id=0,group_id=0.

The fstype is fuse.scribus-1.5.6.1-linux-x86_64.AppImage; options are fd=5,rootmode=40000,user_id=0,group_id=0.

That is a pretty weird name, but there's nothing illegal about it. A fuse daemon is allowed to specify anything it wants for the file system subtype.

This revision was automatically updated to reflect the committed changes.