Skip to content

Instantly share code, notes, and snippets.

@geenloop
Created February 27, 2019 09:14
Show Gist options
  • Save geenloop/6aeaf24f61bfcb02b9f91be6b676bdc7 to your computer and use it in GitHub Desktop.
Save geenloop/6aeaf24f61bfcb02b9f91be6b676bdc7 to your computer and use it in GitHub Desktop.
MAC OS X | Mount Ext4 (Linux) file system
//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