我的问题很简单。我尝试通过 grub 启动 Linux mint 17(与 win7 双启动),但它在 mint 徽标启动屏幕上冻结。
我读过一些关于此问题的文章,但都建议通过终端执行命令。这是不可能的,因为我根本无法进入 shell。我只看到一个启动画面。有什么办法可以解决这个问题,而无需重新安装整个操作系统吗?
答案1
MSI GL72 笔记本电脑上也存在同样的问题,通过设置内核选项 nomodeset 解决。
首先,在实时系统上启动并更新系统上的文件 /etc/boot/grub.cfg 并更改以下行:
linux /boot/vmlinuz-4.10.0-38-generic root=*** ro quiet splash $vt_handoff
到 :
linux /boot/vmlinuz-4.10.0-38-generic root=*** ro quiet splash nomodeset $vt_handoff
(更改所有行或仅更改第一行)
无需实时密钥即可重启。
如果有效,您的更改将被 grup-upgrade 覆盖。要使它们永久生效:
更新文件 /etc/default/grub:
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash nomodeset"
运行命令update-grub,更新文件/etc/boot/grub.cfg。
还有其他适合我的选项(除了 nomodeset):
- acpi_osi=
- 面条
一个有用的帖子:https://ubuntuforums.org/showthread.php?t=1613132。
对于 nomodeset :http://askubuntu.com/questions/207175/what-does-nomodeset-do。
内核参数参考:https://www.kernel.org/doc/Documentation/admin-guide/kernel-parameters.txt。