Created
September 4, 2018 17:43
-
-
Save amessinger/b8eaa8d405c39b391694df56856e71f7 to your computer and use it in GitHub Desktop.
mount linux img partitions on macos
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
brew install ext4fuse | |
brew cask install osxfuse | |
diskutil list | |
# example: disk2s3 is the partion you wish to mount | |
sudo ext4fuse /dev/disk2s3 /Volumes/foo -o allow_other | |
open /Volumes/foo |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment