Brightness adjust Ubuntu vs Xubuntu
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
14.04 brightness
add a comment |
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
14.04 brightness
add a comment |
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
14.04 brightness
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
14.04 brightness
14.04 brightness
asked Jul 10 '15 at 20:29
UNIm95UNIm95
461516
461516
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
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.
add a comment |
Setting up xbacklight
control
Follow these steps:
$ sudo nano /etc/default/grub
and replace the corresponding line withGRUB_CMDLINE_LINUX_DEFAULT="quiet splash acpi_backlight=vendor"
$ sudo update-grub
- No joking, make sure that the appropriate drivers are actually installed:
$ sudo apt install xbacklight xorg xserver-xorg-video-intel
- Issuing
$ 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 calledbrightness
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
- The assignment of the physical
XF86MonBrightnessDown
andXF86MonBrightnessUp
keys is explained here for Xubuntu LTS or XFCE users. - Finally, reboot for these changes to take effect.
Please read my own answer. I have installed my system from mini.iso. As next step i installedxubuntu-desktop
meta package, which hast tookxfce4-power-manager
package. This package makes whole magic for user.
– UNIm95
Feb 8 at 11:04
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f646960%2fbrightness-adjust-ubuntu-vs-xubuntu%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
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.
add a comment |
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.
add a comment |
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.
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.
edited Mar 11 '16 at 22:33
Diego
4881411
4881411
answered Jul 11 '15 at 23:25
UNIm95UNIm95
461516
461516
add a comment |
add a comment |
Setting up xbacklight
control
Follow these steps:
$ sudo nano /etc/default/grub
and replace the corresponding line withGRUB_CMDLINE_LINUX_DEFAULT="quiet splash acpi_backlight=vendor"
$ sudo update-grub
- No joking, make sure that the appropriate drivers are actually installed:
$ sudo apt install xbacklight xorg xserver-xorg-video-intel
- Issuing
$ 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 calledbrightness
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
- The assignment of the physical
XF86MonBrightnessDown
andXF86MonBrightnessUp
keys is explained here for Xubuntu LTS or XFCE users. - Finally, reboot for these changes to take effect.
Please read my own answer. I have installed my system from mini.iso. As next step i installedxubuntu-desktop
meta package, which hast tookxfce4-power-manager
package. This package makes whole magic for user.
– UNIm95
Feb 8 at 11:04
add a comment |
Setting up xbacklight
control
Follow these steps:
$ sudo nano /etc/default/grub
and replace the corresponding line withGRUB_CMDLINE_LINUX_DEFAULT="quiet splash acpi_backlight=vendor"
$ sudo update-grub
- No joking, make sure that the appropriate drivers are actually installed:
$ sudo apt install xbacklight xorg xserver-xorg-video-intel
- Issuing
$ 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 calledbrightness
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
- The assignment of the physical
XF86MonBrightnessDown
andXF86MonBrightnessUp
keys is explained here for Xubuntu LTS or XFCE users. - Finally, reboot for these changes to take effect.
Please read my own answer. I have installed my system from mini.iso. As next step i installedxubuntu-desktop
meta package, which hast tookxfce4-power-manager
package. This package makes whole magic for user.
– UNIm95
Feb 8 at 11:04
add a comment |
Setting up xbacklight
control
Follow these steps:
$ sudo nano /etc/default/grub
and replace the corresponding line withGRUB_CMDLINE_LINUX_DEFAULT="quiet splash acpi_backlight=vendor"
$ sudo update-grub
- No joking, make sure that the appropriate drivers are actually installed:
$ sudo apt install xbacklight xorg xserver-xorg-video-intel
- Issuing
$ 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 calledbrightness
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
- The assignment of the physical
XF86MonBrightnessDown
andXF86MonBrightnessUp
keys is explained here for Xubuntu LTS or XFCE users. - Finally, reboot for these changes to take effect.
Setting up xbacklight
control
Follow these steps:
$ sudo nano /etc/default/grub
and replace the corresponding line withGRUB_CMDLINE_LINUX_DEFAULT="quiet splash acpi_backlight=vendor"
$ sudo update-grub
- No joking, make sure that the appropriate drivers are actually installed:
$ sudo apt install xbacklight xorg xserver-xorg-video-intel
- Issuing
$ 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 calledbrightness
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
- The assignment of the physical
XF86MonBrightnessDown
andXF86MonBrightnessUp
keys is explained here for Xubuntu LTS or XFCE users. - Finally, reboot for these changes to take effect.
answered Feb 8 at 8:52
Serge StroobandtSerge Stroobandt
2,1311934
2,1311934
Please read my own answer. I have installed my system from mini.iso. As next step i installedxubuntu-desktop
meta package, which hast tookxfce4-power-manager
package. This package makes whole magic for user.
– UNIm95
Feb 8 at 11:04
add a comment |
Please read my own answer. I have installed my system from mini.iso. As next step i installedxubuntu-desktop
meta package, which hast tookxfce4-power-manager
package. This package makes whole magic for user.
– UNIm95
Feb 8 at 11:04
Please read my own answer. I have installed my system from mini.iso. As next step i installed
xubuntu-desktop
meta package, which hast took xfce4-power-manager
package. This package makes whole magic for user.– UNIm95
Feb 8 at 11:04
Please read my own answer. I have installed my system from mini.iso. As next step i installed
xubuntu-desktop
meta package, which hast took xfce4-power-manager
package. This package makes whole magic for user.– UNIm95
Feb 8 at 11:04
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f646960%2fbrightness-adjust-ubuntu-vs-xubuntu%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown