LoginSignup
64
63

More than 5 years have passed since last update.

isoイメージを格納したUSBメモリをMacで作成する手順

Last updated at Posted at 2014-10-11

環境

OS : Mac

Terminalを開く

imgファイルに変換する

$ hdiutil convert -format UDRW -o hoge.img {isoファイル}
$ mv hoge.img.dmg hoge.img

USBメモリの確認

$ diskutil list

アンマウント ※ USBメモリが /dev/disk1 として認識されている場合

$ diskutil unMountDisk /dev/disk1

ddコマンドでisoイメージをUSBメモリに書き込む

$ sudo dd if=hoge.img of=/dev/disk1 bs=1m

イジェクト

$ sudo diskutil eject /dev/disk1

64
63
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
64
63