我最近安装了Ubuntu20.04在我的新Razer隐身和安装的Nvidia驱动450,但现在的启动时间是奇怪的。系统启动和响应需要超过两分钟。当nomodeset
引导作为内核参数传递时,它在几秒钟内启动良好,但是Nvidia驱动程序不会被加载.
让它启动后(没有常规代码),这些错误在运行dmesg
之后会出现多次。
[ 151.867350] [drm:drm_atomic_helper_wait_for_dependencies [drm_kms_helper]] *ERROR* [CRTC:83:pipe A] flip_done timed out
[ 162.107787] [drm:drm_atomic_helper_wait_for_dependencies [drm_kms_helper]] *ERROR* [CRTC:136:pipe B] flip_done timed out
[ 172.348571] [drm:drm_atomic_helper_wait_for_dependencies [drm_kms_helper]] *ERROR* [CONNECTOR:191:eDP-1] flip_done timed out
[ 182.588656] [drm:drm_atomic_helper_wait_for_dependencies [drm_kms_helper]] *ERROR* [CONNECTOR:212:DP-3] flip_done timed out
[ 192.828967] [drm:drm_atomic_helper_wait_for_dependencies [drm_kms_helper]] *ERROR* [PLANE:31:plane 1A] flip_done timed out
[ 203.068850] [drm:drm_atomic_helper_wait_for_dependencies [drm_kms_helper]] *ERROR* [PLANE:84:plane 1B] flip_done timed out
[ 213.308649] [drm:drm_atomic_helper_wait_for_flip_done [drm_kms_helper]] *ERROR* [CRTC:83:pipe A] flip_done timed out
[ 223.548542] [drm:drm_atomic_helper_wait_for_flip_done [drm_kms_helper]] *ERROR* [CRTC:136:pipe B] flip_done timed out
在过去的几天里,我尝试过其他帖子中的多个东西,但都没有成功,比如acpi_backlight=video/none/native/vendor
、video=SVIDEO-1:d
。任何帮助都将不胜感激!
发布于 2020-10-25 21:06:15
对我来说,以下几点使一切正常运转。
在/etc/default/grub
中,将GRUB_CMDLINE_LINUX_DEFAULT
编辑为下面的GRUB_CMDLINE_LINUX_DEFAULT="intremap=off"
。然后运行一个sudo update-grub
。重新启动后,一切都会正常的。
正如user228343所建议的那样,GRUB_CMDLINE_LINUX_DEFAULT="intremap=off quiet splash button.lid_init_state=open"
很好地完成了暂停工作。
发布于 2020-11-15 03:39:42
@Sander提供的解决方案可以让nvidia驱动程序正常工作,但是一旦笔记本电脑挂起,它就进入了睡眠循环。这是使用:https://help.ubuntu.com/community/RazerBlade解决的,所以我最后的grub更新有:
GRUB_CMDLINE_LINUX_DEFAULT="intremap=off quiet splash button.lid_init_state=open"
https://askubuntu.com/questions/1266668
复制相似问题