Skip to content

Instantly share code, notes, and snippets.

@arc279
Created May 31, 2017 10:06
Show Gist options
  • Save arc279/92ee7a1d2ab4f8837c50b865ef183709 to your computer and use it in GitHub Desktop.
Save arc279/92ee7a1d2ab4f8837c50b865ef183709 to your computer and use it in GitHub Desktop.
mac でbootable usb作成
#!/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