Não é possível alterar o brilho nas configurações

1

NÃO É UM DUPLICADO POSSÍVEL: Minha pergunta não é a mesma que Não é possível alterar o brilho no Ubuntu 16.04 LTS porque tentei a maioria das soluções lá e eles não não funciona.

Sempre que eu tento alterar o brilho usando as configurações do sistema - > brilho e bloqueio - > controle de brilho, movendo o controle deslizante não tem efeito e quando eu fechar as configurações do sistema, o controle deslizante volta para a posição de brilho total.

(movaocontroledeslizantedebrilhoparaomínimo[nãotemefeito]efecheasconfiguraçõesdosistema)

(reabrir o brilho e bloquear e o controle deslizante está de volta ao brilho total)

Os botões no teclado têm o mesmo efeito.

lspci :

00:02.0 VGA compatible controller: Intel Corporation Haswell-ULT Integrated Graphics Controller (rev 0b)
00:03.0 Audio device: Intel Corporation Haswell-ULT HD Audio Controller (rev 0b)
00:14.0 USB controller: Intel Corporation 8 Series USB xHCI HC (rev 04)
00:16.0 Communication controller: Intel Corporation 8 Series HECI #0 (rev 04)
00:1b.0 Audio device: Intel Corporation 8 Series HD Audio Controller (rev 04)
00:1c.0 PCI bridge: Intel Corporation 8 Series PCI Express Root Port 1 (rev e4)
00:1c.2 PCI bridge: Intel Corporation 8 Series PCI Express Root Port 3 (rev e4)
00:1c.3 PCI bridge: Intel Corporation 8 Series PCI Express Root Port 4 (rev e4)
00:1d.0 USB controller: Intel Corporation 8 Series USB EHCI #1 (rev 04)
00:1f.0 ISA bridge: Intel Corporation 8 Series LPC Controller (rev 04)
00:1f.2 SATA controller: Intel Corporation 8 Series SATA Controller 1 [AHCI mode] (rev 04)
00:1f.3 SMBus: Intel Corporation 8 Series SMBus Controller (rev 04)
06:00.0 Network controller: Qualcomm Atheros QCA9565 / AR9565 Wireless Network Adapter (rev 01)
07:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8101/2/6E PCI Express Fast/Gigabit Ethernet controller (rev 07)

lspci -nnk | grep -A2 VGA :

00:02.0 VGA compatible controller [0300]: Intel Corporation Haswell-ULT Integrated Graphics Controller [8086:0a16] (rev 0b)
  Subsystem: Dell Haswell-ULT Integrated Graphics Controller [1028:0651]
  Kernel driver in use: i915

ls /sys/class/backlight/ :

dell_backlight  intel_backlight
    
por nom 13.01.2017 / 04:08

1 resposta

2

Altere os arquivos /sys/class/backlight/xxx/brightness manualmente, onde xxx é substituído por dell_backlight e intel_backlight , para descobrir qual interface é responsável pelo seu controle de luz de fundo.

Para alterar o valor em /sys/class/backlight/xxx/brightness , abra um terminal e execute:

sudo bash -c "echo 5 > /sys/class/backlight/xxx/brightness;"

Em seguida, crie /etc/X11/xorg.conf se não existir e adicione:

Section "Device"
    Identifier  "Card0"
    Driver      "intel"
    Option      "Backlight"  "xxx"
EndSection

Após editar /etc/X11/xorg.conf , reinicie seu sistema e me informe se ele funciona. '

    
por Hölderlin 13.01.2017 / 18:07