这两天要装好几台ubuntu server,有几台机器用光盘安装没什么问题,但是另外几台因为比较老了,光驱不太灵敏,读盘不行,只好改用usb方式。
1. 在笔记本上用ultraiso焼写镜像到usb,报错设备忙,多次尝试未果。
2. 在台式机上用iso2usb焼写镜像,完成后无法作为启动盘启动
3. 在台式机上用ultraiso,打开Iso后只看到EFI目录
4. 升级ultraiso后,能看到iso完整内容,焼写到u盘,选择hdd+格式
5. 用该u盘启动,没问题,但安装过程中报告错误
[!!] Load installer components from CD
There was a problem reading data from the CD-ROM. Please make sure it
is in the drive. If retrying does not work., you should check the
integrity of your CD-ROM.
Failed to copy file from CD-ROM. Retry?
尝试多次未果,当中放入CD也因为光驱问题无法继续,在网上找到类似问题的解决办法:
-
Run the installer.
-
Open a shell (ALT + F2).
-
Create the directory cdrom directly on the root of the file system:
mkdir /cdrom
(If you got problems making the directory /cdrom, disable the CD-rom player in BOIS or disconnect the cable)
-
Mount the USB as if it is a CD-ROM:
mount -t vfat /dev/sdb1 /cdrom
Where sdb1 is your USB device.
但对于我的机器来说,mount之后仍然报错,看来usb中焼写的文件可能有问题,于是用别的机器把原始的镜像文件拷贝到u盘里,在安装机器上操作(/dev/sdc4即为安装用的u盘):
mkdir /t
mount /dev/sdc4 /t
mount /t/ubuntu-12.04.2.... /cdrom
然后ALT+F1回到图形界面,跳过mount cdrom步骤继续安装,重要继续下去了。
阅读(9135) | 评论(0) | 转发(0) |