09
4 月
2020
MAC快速制作u盘启动器
适合将iso或者img镜像写入到u盘等介质中。
1.diskutil list #查看当前磁盘分区
2.diskutil unmountDisk /dev/disk2 #卸载要写的介质
3.sudo dd if=lubuntu-16.04.dmg of=/dev/rdisk2 bs=4m #快速写入镜像
4.iostat -w 2 #新开一个终端,查看第3步的镜像写入进度
5.diskutil eject /dev/disk2 #弹出介质