ArchiveMounter icon indicating copy to clipboard operation
ArchiveMounter copied to clipboard

Won't run with recent version of MacFuse (workaround)

Open awd97 opened this issue 3 years ago • 6 comments

as the MacFuse executable has changed name from 'osxfuse' to 'macfuse'. A workaround is to copy /Library/Filesystems/macfuse.fs to /Library/Filesystems/osxfuse.fs and then rename /Library/Filesystems/macfuse.fs/Contents/Resources/mount_osxfuse to /Library/Filesystems/macfuse.fs/Contents/Resources/mount_macfuse

awd97 avatar Apr 17 '21 14:04 awd97

Thanks for that workaround! Symlinking things worked perfectly to fix it.

LewsTherinTelescope avatar Feb 03 '22 19:02 LewsTherinTelescope

AppDelegate.swift needs updating to reflect new fuse name: "/Library/Filesystems/macfuse.fs/Contents/Resources/mount_macfuse"

lukebrowell avatar Apr 28 '22 15:04 lukebrowell

Pull requests are welcome!

ivoronin avatar Apr 29 '22 10:04 ivoronin

/Library/Filesystems/macfuse.fs/Contents/Resources/mount_osxfuse to /Library/Filesystems/macfuse.fs/Contents/Resources/mount_macfuse

Vice verse... But thank you, this saved me. Definitely gets things working.

MorningSage avatar Jun 01 '22 03:06 MorningSage

rename /Library/Filesystems/macfuse.fs/Contents/Resources/mount_osxfuse to /Library/Filesystems/macfuse.fs/Contents/Resources/mount_macfuse

No, mistake. Instead the other way around. Also symlinking should definitely be used instead to leave MacFuse as is, and it does work:

symlink /Library/Filesystems/macfuse.fs/Contents/Resources/mount_macfuse to /Library/Filesystems/macfuse.fs/Contents/Resources/mount_osxfuse

and the step before

symlink /Library/Filesystems/macfuse.fs to /Library/Filesystems/osxfuse.fs

Bildschirmfoto 2022-12-01 um 21 23 33

LeeBinder avatar Dec 01 '22 20:12 LeeBinder