Debian

Zenbook的Debian中Grub的acpi_osi不夠時如何啟用亮度按鈕?

  • December 30, 2016
  • 初始條件:亮度控制按鈕不起作用,動作上沒有亮度控制動畫,但在設置和頂部欄中手動控制亮度工作。

  • 測試程式碼1後的情況:亮度控制按鈕不影響亮度,但重啟後有視覺動畫;但是,現在手動控制亮度不再起作用,因此在 Ubuntu 中有效的解決方案在 Debian 中不起作用。

    • 與 Ubuntu 相比,我在這裡都嘗試過,但都GRUB_CMDLINE_LINUX_DEFAULT="quiet splash acpi_osi="沒有成功,其中沒有選項是 Debian 中的預設設置。完整的預設選項僅在 Debian 中使用。GRUB_CMDLINE_LINUX_DEFAULT="quiet acpi_osi="``/etc/default/grub``splash``quiet

差異化解決方案

  1. 使用預設值。撤消測試程式碼的更改 1. 弱點:亮度鍵不起作用,但您可以從頂欄控制亮度。
  2. ?

測試程式碼 1

我可以修復 Ubuntu 16.04 中的亮度控制按鈕(分別用於降低和增加亮度),如fnZenbook 16.04中 Grub 的 acpi_osi 不夠時如何啟用亮度按鈕?但不是在 Debian 8.5 中。與 Ubuntu 相比,Debian 中沒有目錄,因此可能類似的工作流程在 Debian 中不起作用。Debian 中以下工作流程中完成的要點f5``fn``f6``/usr/share/xorg.conf.d/

  1. 在裡面添加程式碼/etc/default/grub
# guillaume-desclaux https://ubuntuforums.org/showthread.php?t=2243162
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash acpi_osi="
# I also tried here without `splash`, since it did 
# not exist by default in Debian, in contrast to Ubuntu.
  1. 創建目錄/usr/share/xorg.conf.d/
  2. 在文件中添加以下內容/usr/share/xorg.conf.d/20-intel.conf
# https://askubuntu.com/a/536618/25388
Section "Device"
       Identifier "card0"
       Driver "intel"
       Option "Backlight" "intel_backlight"
       BusID "PCI:0:2:0"
EndSection
  1. 以root身份執行
update-grub

我在 Debian 中的工作流程

root@masi:/home/masi# vim /etc/default/grub 
root@masi:/home/masi# vim /usr/share/x
xfig/      xml/       xml-core/  xsessions/ 
root@masi:/home/masi# mkdir /usr/share/xorg.conf.d/
root@masi:/home/masi# vim /usr/share/xorg.conf.d/20-intel.conf
root@masi:/home/masi# sudo update-grub
bash: sudo: command not found
root@masi:/home/masi# update-grub
Generating grub configuration file ...
Found background image: /usr/share/images/desktop-base/desktop-grub.png
Found linux image: /boot/vmlinuz-4.6.0-0.bpo.1-amd64
Found initrd image: /boot/initrd.img-4.6.0-0.bpo.1-amd64
Found linux image: /boot/vmlinuz-3.16.0-4-amd64
Found initrd image: /boot/initrd.img-3.16.0-4-amd64
Adding boot menu entry for EFI firmware configuration
done
root@masi:/home/masi#

輸出:重啟後亮度鍵不工作;您現在看到視覺效果但沒有效果;更改後,如果您嘗試手動更改亮度控制也會中斷。

硬體:華碩 Zenbook UX303UA

作業系統:Debian 8.5 64 位

Linux 核心 4.6

Debian 8.5 中的硬體沒有支持和/或足夠的解決方案。

引用自:https://unix.stackexchange.com/questions/307825