ivoronin / ArchiveMounter

Mounts archives like disk images (macOS)
124 stars 8 forks source link

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

Open awd97 opened 3 years ago

awd97 commented 3 years ago

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

LewsTherinTelescope commented 2 years ago

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

lukebrowell commented 2 years ago

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

ivoronin commented 2 years ago

Pull requests are welcome!

MorningSage commented 2 years ago

/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.

LeeBinder commented 1 year ago

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

BenK885 commented 3 months ago

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

sudo ln -s /Library/Filesystems/macfuse.fs/Contents/Resources/mount_macfuse /Library/Filesystems/macfuse.fs/Contents/Resources/mount_osxfuse

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

sudo ln -s /Library/Filesystems/macfuse.fs /Library/Filesystems/osxfuse.fs