Skip to content

Instantly share code, notes, and snippets.

@gurre
Last active December 15, 2022 19:58
Show Gist options
  • Save gurre/2c84e7c0e577a21bf0e1584980b7d9f0 to your computer and use it in GitHub Desktop.
Save gurre/2c84e7c0e577a21bf0e1584980b7d9f0 to your computer and use it in GitHub Desktop.
Mounting Windows and Linux disks with write permissions on MacOS Mojave

Mounting NTFS disk with write permissions on macOS Mojave (10.14)

brew install --cask macfuse
brew tap gromgit/homebrew-fuse
brew install ntfs-3g-mac

sudo mkdir /Volumes/NTFS
sudo /usr/local/sbin/mount_ntfs /dev/diskXsY /Volumes/NTFS

References

Mounting Ext3 disk with write permissions on macOS Mojave (10.14)

# Install https://github.com/search?p=1&q=language%3Ashell+brew+fuse-ext2&type=Code
sudo diskutil list
sudo mkdir /Volumes/disk2s1
sudo fuse-ext2 -o force /dev/disk2s1 /Volumes/disk2s1
sudo diskutil umount /Volumes/disk2s1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment