开机按 F2 进入bios 设置,
- 选择【Boot Settings】进入驱动设置(建议进入Network seting 打开网卡)
- 将【Generic USB Boot】 选为Enabled,点击【UEFI Boot Settings】
- 点击【UEFI Boot Sequence】进入启动排序
5.点击【+】将U盘启动设置为最优。
- 保存退出。重启系统。
U盘安装系统报错处理
下面是我解决的过程:
在启动后引导界面按 e 进行编辑
修改掉默认的信息(图示默认的信息):
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 |
修改为(修改后的图):
1 2 3 4 | 【修改后的信息】 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盘启动,修改引导,
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 执行就可以了
参考文档:https://blog.csdn.net/tangshiweibbs/article/details/80233828