ArchiveMounter
ArchiveMounter copied to clipboard
Won't run with recent version of MacFuse (workaround)
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
Thanks for that workaround! Symlinking things worked perfectly to fix it.
AppDelegate.swift needs updating to reflect new fuse name: "/Library/Filesystems/macfuse.fs/Contents/Resources/mount_macfuse"
Pull requests are welcome!
/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.
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