我在 Windows 10 和 pop!_os 20.10 之间双启动笔记本电脑 (Dell Precision 7550),相当于 Ubuntu 20.10。我有关于屏幕亮度的问题。
笔记本电脑卡在某个柔和的屏幕亮度上,我无法更改它。按物理键盘按键控制亮度将使屏幕上显示正常的亮度提示,并根据我按下的按钮增加/减少滑块。然而,即使滑块发生变化,实际屏幕亮度仍保持不变。如果我使用屏幕右上角的 Gnome 亮度滑块,也会出现同样的问题。
里面/sys/class/backlight
有两个目录:intel_backlight
和dell_backlight
。当我尝试调整亮度(通过按钮或 Gnome 滑块)时,亮度intel_backlight/brightness
没有改变,但值dell_backlight/brightness
做更改(无需调整屏幕亮度)。
有人对我如何解决这个问题有建议吗?
我已经尝试过了:
- 设置
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash acpi_backlight=vendor"
在/etc/default/grub
. - 制作
/usr/share/X11/xorg.conf.d/20-intel.conf
并放入以下内容(抱歉,无法正确格式化):
Section "Device"
Identifier "card0"
Driver "intel"
Option "Backlight" "intel_backlight"
BusID "PCI:0:2:0"
EndSection
查看以下输出
journalctl -b -0|grep light
:一切看起来正常,除了错误“Apr 27 11:10:45 pop-os system76-power[818]: [ERROR] hid_backlight: no system76_acpi::kbd_backlight led”(大概是因为笔记本电脑没有发光键盘)。/sys/class/brightness
更改用户的权限而不是root。没有效果。
解决方法:
我可以调整屏幕亮度的唯一方法是使用xrandr
:例如xrandr --output eDPI --brightness 0.8
其他信息:
输出uname -a
:Linux pop-os 5.11.0-7612-generic #13~1617215757~20.10~97a8d1a-Ubuntu SMP Thu Apr 1 21:09:17 UTC 2 x86_64 x86_64 x86_64 GNU/Linux
输出sudo lshw -c display
:
*-display
description: VGA compatible controller
product: TU104GLM [Quadro RTX 4000 Mobile / Max-Q]
vendor: NVIDIA Corporation
physical id: 0
bus info: pci@0000:01:00.0
version: a1
width: 64 bits
clock: 33MHz
capabilities: pm msi pciexpress vga_controller bus_master cap_list rom
configuration: driver=nvidia latency=0
resources: irq:223 memory:b3000000-b3ffffff memory:70000000-7fffffff memory:80000000-81ffffff ioport:3000(size=128) memory:b4000000-b407ffff
*-display
description: VGA compatible controller
product: UHD Graphics
vendor: Intel Corporation
physical id: 2
bus info: pci@0000:00:02.0
logical name: /dev/fb0
version: 05
width: 64 bits
clock: 33MHz
capabilities: pciexpress msi pm vga_controller bus_master cap_list rom fb
configuration: depth=32 driver=i915 latency=0 mode=3840x2160 visual=truecolor xres=3840 yres=2160
resources: iomemory:600-5ff iomemory:400-3ff irq:172 memory:604a000000-604affffff memory:4000000000-400fffffff ioport:4000(size=64) memory:c0000-dffff
谢谢。