Skip to content

Instantly share code, notes, and snippets.

@futurisma
futurisma / gist:6cfc1b52e6e81ce99a0796385999a92c
Last active July 15, 2018 19:30
Mount USB drive on Mac in Single User mode
If you need to mount a USB drive in single user mode on a Mac, diskutil won't work , but mount can still be used if you can detect the device name for your USB drive
Use this to detect your USB drive id :
ls /dev > d1.txt
# insert usb
ls /dev > d2.txt
sdiff -s d1.txt d2.txt
Create a mount point with :