Created
February 27, 2019 09:14
-
-
Save geenloop/6aeaf24f61bfcb02b9f91be6b676bdc7 to your computer and use it in GitHub Desktop.
MAC OS X | Mount Ext4 (Linux) file system
This file contains hidden or 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
//install dependecies | |
brew cask install osxfuse | |
brew install ext4fuse | |
//mount "diskNsM" which is found in "Disk Utils" or "sudo fdisk -l" | |
mkdir -p "$HOME/tmp/my-linux-mount" | |
sudo ext4fuse /dev/diskNsM $HOME/tmp/my-linux-mount -o allow_other |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment