安装 Ubuntu Server 时,如果使用 U盘 来安装,启动系统的时候光驱检测时出现的如下的错误页面:
Your installation CD-couldn't be mounted. This probably means that the CD-ROM was not in the drive. If so you can insert it and try again
Retry mounting the CD-ROM?
这是由于 U盘的挂载出现了问题,我们先按
Alt+F2
组合键调出命令界面。
# 查看u盘盘符信息,我这里是 sdb fdisk -l # 挂载u盘到 /mnt 目录 mount/dev/sdb /mnt # 挂载iso镜像文件到 /cdrom 目录 mount/mnt/ubuntu-server.iso /cdrom # 查看/cdrom目录,确定是否挂载成功
最后退出命令界面,按
Alt+F1
,选择 OK 就可以开始安装了。