Last active
February 12, 2018 00:54
-
-
Save sibsfinx/40d51105a6ade4aaec490eac43a2a5af to your computer and use it in GitHub Desktop.
Prepare external drive on mac fucking OS
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
# list disks: | |
diskutil list | |
# use disk name from the listed isntead of disk3 | |
# unmount your external drive: | |
diskutil unmountDisk force disk3 | |
# format in HFS with the name you want: | |
diskutil partitionDisk disk3 GPT JHFS+ "Drive Name" 0g |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment