Open butterandfly opened 10 years ago
首先要格式化u盘,在mac下你可以使用diskutil:
diskutil list
然后格式化:
sudo diskutil eraseDisk FAT32 [NAME] MBRFormat /dev/disk1
注意上面的[NAME]是你指名的,而且必须大写!
具体见:http://superuser.com/questions/527657/how-do-you-format-a-2gb-sd-card-to-fat32-preferably-with-disk-utility 补充:安装ubuntu给的指南,这步非必须。
你需要吧iso格式的安装包转为img格式:
hdiutil convert -format UDRW -o ~/path/to/target.img ~/path/to/ubuntu.iso
hdiutil会默认给img那文件加个dmg后缀,所以你要把那后缀删去。
过程中你需要查看你的u盘的挂载信息:
diskutil list
通常会是/dev/disk1
。
看完后可以先停止u盘:
diskutil unmountDisk /dev/diskN
这里的N是实际上对应你的u盘的数字。
接下来就是把内容写到u盘上:
sudo dd if=/path/to/downloaded.img of=/dev/rdiskN bs=1m
这里的路径和N都对应实际的情况。
最后可以把u盘退出:
diskutil eject /dev/diskN
这段记录是根据gentoo给的官方指南,及ubuntu给的指南整理。两者的页面的地址分别为: gentoo: http://www.gentoo.org/doc/zh_cn/liveusb.xml ubuntu: http://www.ubuntu.com/download/desktop/create-a-usb-stick-on-mac-osx