U盘安装centos7启动过程中出现:

1
2
3
[ok] Reached target Basic System
或者
[ok] starting dracut initqueue hook

到下一行就不动了,一直没有反应!然后网上搜问题找答案 解决办法参考:

U盘安装CentOS时停在Reached target Basic System的解决方案

下面是我解决的过程:

在启动后引导界面按 e 进行编辑

2014092409230248.png

修改掉默认的信息(图示默认的信息):

1
2
3
4
【这个是默认的信息】
setparams 'Install CentOS Linux 7'
linuxefi /images/pxeboot/vmlinuz inst.stage2=hd:LABEL=CentOS\x207\x20x86_64 xdriver=vesa nomodeset quiet
initrdefi /images/pxeboot/initrd.img

682458820105477244.jpg

修改为(修改后的图):

1
2
3
4
【修改后的信息】
setparams 'Install CentOS linux 7'
linuxefi /images/pxeboot/vmlinuz linux dd nomodeset quiet
initrdefi /images/pxeboot/initrd.img

658209690595315337.jpg

按Ctrl + X 执行上面的修改

118558622918007013.jpg

然后启动后屏幕会列出当前机器的硬盘设备也包括你的U盘,一般一个硬盘的话,U盘都是sdb* 这样的【记住你的U盘设备路径】

我们看到了U盘的名称,前面的设备名称为/dev/sdb4 ,重启,U盘启动,修改引导,

1
2
3
4
【第二次修改后,注意U盘的设备路径】
setparams 'Install CentOS Linux 7'
linuxefi /images/pxeboot/vmlinuz inst.stage2=hd:/dev/sdb4 nomodeset quiet
initrdefi /images/pxeboot/initrd.img

再次Ctrl + X 执行就可以了

centos7 U盘安装卡在 starting dracut initqueue hook