在Win8.1下,将从CentOS官网上下载的CentOS7镜像文件,用UltrISO以硬盘镜像方法写入U盘
安装过程中出现下面错误:
dracut-initqueue[624]:Warning: Could not boot.
dracut-initqueue[624]:Warning: /dev/root does not exist.
Starting Dracut EmergencyShell…
Warning: /dev/root does not exist
原因是:UltroISO在Window下写入U盘的安装文件路径,没有被linux安装程序识别
解决方法如下:
dracut:/# cd /dev
dracut:/dev# ls
后找到安装文件所在的位置,我的是sdc,因为我有两块硬盘,我的U盘排第三,所以是c。
重启在安装界面按下Tab键,修改启动配置,将
vmlinuz initrd=initrd.img
inst.stage2=hd:LABEL=CentOS\x207\x20x86_64 rd.live.check quiet
改为:
vmlinuz initrd=initrd.img
inst.stage2=hd:/dev/sdc quiet
就可以了。
参照下面的文章,列出了其它几种方法:
http://www.geekcome.com/content-10-8397-1.html