U盘安装centos7启动过程中出现: Reached target Basic System 或 starting dracut initqueue hook 一般这种情况是因为安装找不到镜像的路劲,需要我们查看以后手动更改一下 下面是解决的过程: 在启动后引导界面按 e 进行编辑 修改掉默认的信息(图示默认的信息): 【这个是默认的信息】 setparams 'Install CentOS Linux 7' linuxefi /images/pxeboot/vmlinuz inst.stage2=hd ABEL=CentOS\x207\x20x86_64 xdriver=vesa nomodeset quiet initrdefi /images/pxeboot/initrd.img 修改后的内容为: setparams 'Install CentOS linux 7' linuxefi /images/pxeboot/vmlinuz linux dd nomodeset quiet initrdefi /images/pxeboot/initrd.img 按Ctrl + X 执行上面的修改,会显示以下页面内容 然后启动后屏幕会列出当前机器的硬盘设备也包括你的U盘,一般一个硬盘的话,U盘都是sdb* 这样的【记住你的U盘设备路径】 记下U盘的名称,前面的设备名称为/dev/sdb4 ,重启,U盘启动,修改引导 【第二次修改后,注意U盘的设备路径】 setparams 'Install CentOS Linux 7' linuxefi /images/pxeboot/vmlinuz inst.stage2=hd:/dev/sdb4 nomodeset quiet initrdefi /images/pxeboot/initrd.img 最后再次Ctrl + X 执行就可以了 本人使用u盘安装linux时,经常遇到这种问题,分享给大家,让大家少走弯路 |