mac下烧录ISO到U盘(类似UltraISO烧录)
只从用上mac后,有时候想做个系统盘,居然还要去windows上搞,就想直接在mac上就可以搞定,网上搜了下,居然还真有办法.下面就给大家说下制作过程:
1.先用diskutil查看U盘设备的名称
diskutil list #记录U盘位置,例如/dev/disk3
2.然后用下面的命令把它格式化:
diskutil umountdisk /dev/disk3 #先取消挂载U盘
sudo diskutil eraseDisk FAT32 CAM_STORE MBRFormat /dev/disk3 #然后格式化为fat32格式的
3.然后开始烧录
sudo dd if=[.ISO文件位置] of=/dev/disk3 bs=1m; sync #可以将iso文件直接拖入终端,即可显示路径.将/dev/disk3改为/dev/rdisk3可以提高写入速度.
4.最后弹出u盘
diskutil eject /dev/disk3
好了,这样就用u盘来做系统盘了.
ps:
http://liuhonghe.me/mac-r-iso.html
http://jksoftcn.com/macming-ling-xing-ge-shi-hua-upan.html
http://liuhonghe.me/mac-r-iso.html
http://jksoftcn.com/macming-ling-xing-ge-shi-hua-upan.html
评论: