我最近更新了运行 Ubuntu 22.04 的 Dell Latitude 5480 笔记本电脑的 BIOS(1.30.0)。
现在屏幕变暗了(启动时我可以看到变化),甚至xrandr --output eDP-1 --brightness 1
没有解决问题。
事实证明,现在除了亮度键之外,所有功能键都可以使用。
所以以下是我迄今为止尝试过的解决方案:
1:
sudo vim /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
2:
sudo vim /etc/default/grub
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash acpi_backlight=vendor"
sudo update-grub
3:
sudo vim /etc/modprobe.d/framework-als-blacklist.conf
blacklist hid_sensor_hub
sudo update-initramfs -u
这些对我都不起作用。
有什么想法吗?