I have little problem: LiveCD with ubuntu 14.04 can adjust brigthness on laptop and with xubuntu 14.04(installed from mini.iso)
What package i need to install for brightness adjustment.
- OS (x)Ubuntu 14.04
- Laptop: Toshiba TecraA11-182
I have little problem: LiveCD with ubuntu 14.04 can adjust brigthness on laptop and with xubuntu 14.04(installed from mini.iso)
What package i need to install for brightness adjustment.
I understood why brightness adjust haven't worked.
sudo apt-get install xubuntu-desktop
...doesn't install package xfce4-power-manager
. So installing this package helped me to solve this problem:
sudo apt-get install xfce4-power-manager xfce4-power-manager-data xfce4-power-manager-plugins
Next reboot your laptop and enjoy it.
xbacklight
controlFollow these steps:
$ sudo nano /etc/default/grub
and replace the corresponding line with GRUB_CMDLINE_LINUX_DEFAULT="quiet splash acpi_backlight=vendor"
$ sudo update-grub
$ sudo apt install xbacklight xorg xserver-xorg-video-intel
$ find /sys -type f -name brightness
should yield something like /sys/devices/pci0000:00/0000:00:02.0/drm/card0/card0-eDP-1/intel_backlight/brightness
$ cd /sys/class
This directory should contain a soft link called brightness
to the brightness device discovered in the previous step. Should it be missing, create it: $ sudo ln -s /sys/devices/pci0000:00/0000:00:02.0/drm/card0/card0-eDP-1/intel_backlight/brightness /sys/class/brightness
$ sudo nano /etc/X11/xorg.conf
should read:Section "Device"
Identifier "Device0"
Driver "intel"
Option "Backlight" "intel_backlight"
EndSection
Section "Monitor"
Identifier "Monitor0"
EndSection
Section "Screen"
Identifier "Screen0"
Monitor "Monitor0"
Device "Device0"
EndSection
XF86MonBrightnessDown
and XF86MonBrightnessUp
keys is explained here for Xubuntu LTS or XFCE users.xubuntu-desktop
meta package, which hast took xfce4-power-manager
package. This package makes whole magic for user.
– UNIm95
Feb 08 '19 at 11:04