Razer Stealth 屏幕闪烁

Razer Stealth 屏幕闪烁

我最近在 Razer Stealth 笔记本电脑上安装了 Ubuntu 18.04.1 LTS,现在我遇到了严重的屏幕闪烁问题。首次启动后大约 15 分钟内一切正常,然后屏幕每隔几秒钟就开始剧烈闪烁,没有明显的触发因素。我真的不知道从哪里开始解决这个问题,所以非常感谢任何帮助。这是我的系统信息:

H/W path Device Class Description

=================================================

system Blade Stealth (RZ09-02393E32)

/0 bus Blade Stealth

/0/0 memory 64KiB BIOS

/0/25 memory 16GiB System Memory

/0/25/0 memory 8GiB Row of chips LPDDR3 Synchronous Unbuf

/0/25/1 memory [empty]

/0/25/2 memory 8GiB Row of chips LPDDR3 Synchronous Unbuf

/0/25/3 memory [empty]

/0/2c memory 256KiB L1 cache

/0/2d memory 1MiB L2 cache

/0/2e memory 8MiB L3 cache

/0/2f processor Intel(R) Core(TM) i7-8550U CPU @ 1.80GHz

/0/100 bridge Intel Corporation

/0/100/2 display Intel Corporation

/0/100/14 bus Sunrise Point-LP USB 3.0 xHCI Controller

/0/100/14/0 usb1 bus xHCI Host Controller

/0/100/14/0/1 multimedia USB Camera

/0/100/14/0/6 communication Bluetooth wireless interface

/0/100/14/0/8 input Razer Blade Stealth

/0/100/14/0/9 input Touchscreen

/0/100/14/1 usb2 bus xHCI Host Controller

/0/100/14.2 generic Sunrise Point-LP Thermal subsystem

/0/100/15 generic Sunrise Point-LP Serial IO I2C Controller

/0/100/15.1 generic Sunrise Point-LP Serial IO I2C Controller

/0/100/16 communication Sunrise Point-LP CSME HECI #1

/0/100/1c bridge Intel Corporation

/0/100/1c/0 wlp1s0 network QCA6174 802.11ac Wireless Network Adapter

/0/100/1c.4 bridge Sunrise Point-LP PCI Express Root Port #5

/0/100/1d bridge Sunrise Point-LP PCI Express Root Port #9

/0/100/1d/0 storage Samsung Electronics Co Ltd

/0/100/1f bridge Intel Corporation

/0/100/1f.2 memory Memory controller

/0/100/1f.3 multimedia Intel Corporation

/0/100/1f.4 bus Sunrise Point-LP SMBus


macksol@macksol ~ % lspci | grep VGA
00:02.0 VGA compatible controller: Intel Corporation UHD Graphics 620 (rev 07)

提前感谢你的帮助。

答案1

此设备有一系列修复在 GitHub 上

对我来说,解决这个问题的方法是设置i915.enable_rc6=0(而不是1按照页面建议的)。

使用文本编辑器打开/etc/default/grub,例如使用

sudoedit /etc/default/grub

找到行首GRUB_CMDLINE_LINUX_DEFAULT=并在引号之间添加参数,你最终会得到类似

GRUB_CMDLINE_LINUX_DEFAULT="i915.enable_rc6=0 quiet splash"

保存退出,运行

sudo update-grub

然后重新启动。

相关内容