当重装服务器的操作系统时,需要使用U 盘进行启动安装,这里以在Mac 上制作Ubuntu 启动盘为例。
- 将下载的iso 文件转换成dmg 文件,OS X 系统对自动追加dmg 后缀名。
$ cd ~/Downloads
$ hdiutil convert -format UDRW -o ubuntu-14.04.5-server-amd64 ubuntu-14.04.5-server-amd64.iso
- 插入U 盘,查看USB 盘符。这里我的盘符是/dev/disk2。
$ diskutil list
- 卸载USB 盘符。
$ diskutil unmountDisk /dev/disk2
- 将镜像文件写入U 盘。
$ sudo dd if=ubuntu-14.04.5-server-amd64.dmg of=/dev/rdisk2 bs=1m
写入完成后,会显示“The disk you inserted was not readable by this computer” 对话框。
- 弹出U 盘,并选择忽略刚才的对话框。
$ diskutil eject /dev/disk2
如果要测试的话,在开机时按住option 键,选择USB 启动。