-
-
Save arc279/92ee7a1d2ab4f8837c50b865ef183709 to your computer and use it in GitHub Desktop.
mac でbootable usb作成
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
| #!/bin/bash | |
| # for mac | |
| : diskutil list | |
| DISK=/dev/disk2 | |
| ISO=CentOS-7-x86_64-Minimal-1611.iso | |
| : diskutil eraseDisk MS-DOS UNTITLED $DISK | |
| : diskutil unmountDisk $DISK | |
| sudo dd if=$ISO of=$DISK bs=4028 status=progress | |
| : diskutil eject $DISK | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment