将ISO转换成IMG:[code]hdiutil convert -format UDRW -o ubuntu-16.04-desktop-amd64.img ubuntu-16.04-desktop-amd64.iso[/code]
查看磁盘设备名,找到U盘的设备名[code]diskutil list[/code]
卸载U盘[code]diskutil umountDisk /dev/disk2[/code]
使用dd将ubuntu的img写入U盘[code]sudo dd if=
ubuntu-16.04-desktop-amd64.dmg of=/dev/disk2 bs=1m[/code]
完成!