我有 Ubuntu 18.04 LTS。
uname -a
Linux username-laptop 4.15.0-112-generic #113-Ubuntu SMP Thu Jul 9 23:41:39 UTC 2020 x86_64 x86_64 x86_64 GNU/Linux
我必须在 grub 期间手动nomodeset
添加。我不想手动执行此操作,而是想进行永久更改。我试过了quiet splash $vt_handoff
e这但它不能解决问题,因为它添加了nomodeset
和quiet splash
,$vt_handoff
并且 Ubuntu 卡在启动屏幕上:
我怎样才能做到这一点?
答案1
正如我之前所做的那样,首先我打开/etc/default/grub
:
gedit admin:///etc/default/grub
然后我把这一行改成GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
了:
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash nomodeset"
然后,
sudo update-grub
sudo update grub2
但经过几次重启(每次都手动添加 nomodeset)后,终于成功了。