我已经按照 help.ubuntu.com 页面上的内容完成了所有工作,直到第 9 步。
当它说
"Execute sudo dd if=/path/to/downloaded.img of=/dev/diskN bs=1m
(replace /path/to/downloaded.img with the path where the image file is located; for example, ./ubuntu.img or ./ubuntu.dmg)."
当我将其输入终端并按下回车键时,什么也没有发生。当然,我不太擅长使用命令行,但任何帮助都会非常感激。
如何才能做到这一点?
答案1
sudo dd if=/path/to/downloaded.img of=/dev/diskN bs=1m
/path/to/downloaded.img
表示该 img 文件的路径,例如,如果.img
位于/bin
文件夹中,那么我们给出if=/bin/downloaded.img
。
/dev/diskN
表示您要放置.img
文件内容的 USB 分区。
或者
您可以使用unetbootin
从 Mac 创建可启动的 ubuntu usb 的软件。