xbacklight: No outputs have backlight property - No /sys/class/backlight folder
I installed xbacklight
, hoping that it would be able to control my brightness. When trying to change brightness, I was told "No outputs have backlight property". After looking around, I found that this has to do with my computer not having a /sys/class/backlight
folder. I know that this is the problem but don't know exactly how to fix it.
Not sure if its needed or not but here some system info from inxi:
System: Kernel: 3.16.0-57-generic x86_64 (64 bit, gcc: 4.8.2)
Desktop: LXDE (Openbox 3.5.2) Distro: Ubuntu 14.04 trusty
Machine: HP EliteBook 8460p
CPU: Dual core Intel Core i5-2520M CPU
Graphics: Advanced Micro Devices [AMD/ATI] Seymour [Radeon HD 6400M/7400M Series]
Does this have to do with drivers (perhaps Intel/AMD graphics drivers)?
drivers intel-graphics hp backlight xbacklight
add a comment |
I installed xbacklight
, hoping that it would be able to control my brightness. When trying to change brightness, I was told "No outputs have backlight property". After looking around, I found that this has to do with my computer not having a /sys/class/backlight
folder. I know that this is the problem but don't know exactly how to fix it.
Not sure if its needed or not but here some system info from inxi:
System: Kernel: 3.16.0-57-generic x86_64 (64 bit, gcc: 4.8.2)
Desktop: LXDE (Openbox 3.5.2) Distro: Ubuntu 14.04 trusty
Machine: HP EliteBook 8460p
CPU: Dual core Intel Core i5-2520M CPU
Graphics: Advanced Micro Devices [AMD/ATI] Seymour [Radeon HD 6400M/7400M Series]
Does this have to do with drivers (perhaps Intel/AMD graphics drivers)?
drivers intel-graphics hp backlight xbacklight
add a comment |
I installed xbacklight
, hoping that it would be able to control my brightness. When trying to change brightness, I was told "No outputs have backlight property". After looking around, I found that this has to do with my computer not having a /sys/class/backlight
folder. I know that this is the problem but don't know exactly how to fix it.
Not sure if its needed or not but here some system info from inxi:
System: Kernel: 3.16.0-57-generic x86_64 (64 bit, gcc: 4.8.2)
Desktop: LXDE (Openbox 3.5.2) Distro: Ubuntu 14.04 trusty
Machine: HP EliteBook 8460p
CPU: Dual core Intel Core i5-2520M CPU
Graphics: Advanced Micro Devices [AMD/ATI] Seymour [Radeon HD 6400M/7400M Series]
Does this have to do with drivers (perhaps Intel/AMD graphics drivers)?
drivers intel-graphics hp backlight xbacklight
I installed xbacklight
, hoping that it would be able to control my brightness. When trying to change brightness, I was told "No outputs have backlight property". After looking around, I found that this has to do with my computer not having a /sys/class/backlight
folder. I know that this is the problem but don't know exactly how to fix it.
Not sure if its needed or not but here some system info from inxi:
System: Kernel: 3.16.0-57-generic x86_64 (64 bit, gcc: 4.8.2)
Desktop: LXDE (Openbox 3.5.2) Distro: Ubuntu 14.04 trusty
Machine: HP EliteBook 8460p
CPU: Dual core Intel Core i5-2520M CPU
Graphics: Advanced Micro Devices [AMD/ATI] Seymour [Radeon HD 6400M/7400M Series]
Does this have to do with drivers (perhaps Intel/AMD graphics drivers)?
drivers intel-graphics hp backlight xbacklight
drivers intel-graphics hp backlight xbacklight
edited Aug 6 '16 at 10:48
Tshepang
1,24721535
1,24721535
asked Dec 31 '15 at 7:55
Carter RoeserCarter Roeser
85128
85128
add a comment |
add a comment |
3 Answers
3
active
oldest
votes
That is completely normal. To find the directory for your backlight settings, do this:
sudo find /sys/ -type f -iname '*brightness*'
The output should give you something like this:
/sys/devices/pci0000:00/0000:00:02.0/drm/card0/card0-LVDS-1/intel_backlight/brightness
Now, all you have to do is link it to /sys/class/backlight
. To do that:
sudo ln -s /sys/devices/pci0000:00/0000:00:02.0/drm/card0/card0-LVDS-1/intel_backlight /sys/class/backlight
If you still get the error, then do this:
Create the file xorg.conf
:
sudo nano /etc/X11/xorg.conf
And add these lines:
Section "Device"
Identifier "Card0"
Driver "intel"
Option "Backlight" "NAME OF THE FOLDER"
EndSection
Then, to save the file do: Ctrl + X then Y then Enter.
Also, for the Driver
part check for your configuration, i.e., acpi_video0
or intel_backlight
.
2
What if there is already a folder on that path? How do I undo such a replacing ln -s if it breaks brightness (by now it's at least controllable from keyboard)? I've tried creatingxorg.conf
, added bothintel_backlight
and the long absolute path to the folder. But it didn't work. So should I: 1. Try ln -s cuz it's harmless 2. Try some other driver name (btw how do I know it otherwise part of the path?), or 3. Use not the path but the name of the folder (it would be same toDriver
field so that's why I'm asking)?
– mekkanizer
Apr 27 '16 at 1:01
8
In my computer if I open the file /sys/class/backlight/intel_backlight/brightness, I will see an integer value inside it. Just changed the value and saved, my screen immediatelly got the correct brightness. But if I try to use the ln command proposed, I dont have exactly the same folder, and if I try to do this with my intel_backlight folder, I get the error: ln: failed to create symbolic link '/sys/class/backlight/brightness': Operation not permitted
– user5193682
Oct 22 '16 at 15:25
1
@user9589 This sounds like a permission issue. You did execute the ln command as root, didn't you? And I think you were supposed to link the folder, not the brightness file inside that folder. Anyway, the solution didn't work for me, but I already had a /sys/class/backlight folder.
– Nobody
Nov 6 '16 at 14:08
5
One reason for "operation not permitted" may be that the file name contains characters that should be escaped. That was the case for me.
– Yan King Yin
May 6 '17 at 16:03
1
@YanKingYin How did you do that exactly?
– Mephisto
Jan 27 '18 at 7:02
|
show 4 more comments
Check your /sys/class/backlight
folder. If you can see an intel_backlight
folder there and still you are getting the above error then creating a /etc/X11/xorg.conf
file with the below configuration should work for you. It worked for me.
Section "Device"
Identifier "Intel Graphics"
Driver "intel"
Option "Backlight" "intel_backlight"
EndSection
Also, remember to logout and login again for the changes to take effect.
Reference:
https://wiki.archlinux.org/index.php/backlight
This answer is the most straightforward forintel_backlight
users.
– Serge Stroobandt
Oct 1 '18 at 20:57
add a comment |
Every step required for 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.
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%2f715306%2fxbacklight-no-outputs-have-backlight-property-no-sys-class-backlight-folder%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
That is completely normal. To find the directory for your backlight settings, do this:
sudo find /sys/ -type f -iname '*brightness*'
The output should give you something like this:
/sys/devices/pci0000:00/0000:00:02.0/drm/card0/card0-LVDS-1/intel_backlight/brightness
Now, all you have to do is link it to /sys/class/backlight
. To do that:
sudo ln -s /sys/devices/pci0000:00/0000:00:02.0/drm/card0/card0-LVDS-1/intel_backlight /sys/class/backlight
If you still get the error, then do this:
Create the file xorg.conf
:
sudo nano /etc/X11/xorg.conf
And add these lines:
Section "Device"
Identifier "Card0"
Driver "intel"
Option "Backlight" "NAME OF THE FOLDER"
EndSection
Then, to save the file do: Ctrl + X then Y then Enter.
Also, for the Driver
part check for your configuration, i.e., acpi_video0
or intel_backlight
.
2
What if there is already a folder on that path? How do I undo such a replacing ln -s if it breaks brightness (by now it's at least controllable from keyboard)? I've tried creatingxorg.conf
, added bothintel_backlight
and the long absolute path to the folder. But it didn't work. So should I: 1. Try ln -s cuz it's harmless 2. Try some other driver name (btw how do I know it otherwise part of the path?), or 3. Use not the path but the name of the folder (it would be same toDriver
field so that's why I'm asking)?
– mekkanizer
Apr 27 '16 at 1:01
8
In my computer if I open the file /sys/class/backlight/intel_backlight/brightness, I will see an integer value inside it. Just changed the value and saved, my screen immediatelly got the correct brightness. But if I try to use the ln command proposed, I dont have exactly the same folder, and if I try to do this with my intel_backlight folder, I get the error: ln: failed to create symbolic link '/sys/class/backlight/brightness': Operation not permitted
– user5193682
Oct 22 '16 at 15:25
1
@user9589 This sounds like a permission issue. You did execute the ln command as root, didn't you? And I think you were supposed to link the folder, not the brightness file inside that folder. Anyway, the solution didn't work for me, but I already had a /sys/class/backlight folder.
– Nobody
Nov 6 '16 at 14:08
5
One reason for "operation not permitted" may be that the file name contains characters that should be escaped. That was the case for me.
– Yan King Yin
May 6 '17 at 16:03
1
@YanKingYin How did you do that exactly?
– Mephisto
Jan 27 '18 at 7:02
|
show 4 more comments
That is completely normal. To find the directory for your backlight settings, do this:
sudo find /sys/ -type f -iname '*brightness*'
The output should give you something like this:
/sys/devices/pci0000:00/0000:00:02.0/drm/card0/card0-LVDS-1/intel_backlight/brightness
Now, all you have to do is link it to /sys/class/backlight
. To do that:
sudo ln -s /sys/devices/pci0000:00/0000:00:02.0/drm/card0/card0-LVDS-1/intel_backlight /sys/class/backlight
If you still get the error, then do this:
Create the file xorg.conf
:
sudo nano /etc/X11/xorg.conf
And add these lines:
Section "Device"
Identifier "Card0"
Driver "intel"
Option "Backlight" "NAME OF THE FOLDER"
EndSection
Then, to save the file do: Ctrl + X then Y then Enter.
Also, for the Driver
part check for your configuration, i.e., acpi_video0
or intel_backlight
.
2
What if there is already a folder on that path? How do I undo such a replacing ln -s if it breaks brightness (by now it's at least controllable from keyboard)? I've tried creatingxorg.conf
, added bothintel_backlight
and the long absolute path to the folder. But it didn't work. So should I: 1. Try ln -s cuz it's harmless 2. Try some other driver name (btw how do I know it otherwise part of the path?), or 3. Use not the path but the name of the folder (it would be same toDriver
field so that's why I'm asking)?
– mekkanizer
Apr 27 '16 at 1:01
8
In my computer if I open the file /sys/class/backlight/intel_backlight/brightness, I will see an integer value inside it. Just changed the value and saved, my screen immediatelly got the correct brightness. But if I try to use the ln command proposed, I dont have exactly the same folder, and if I try to do this with my intel_backlight folder, I get the error: ln: failed to create symbolic link '/sys/class/backlight/brightness': Operation not permitted
– user5193682
Oct 22 '16 at 15:25
1
@user9589 This sounds like a permission issue. You did execute the ln command as root, didn't you? And I think you were supposed to link the folder, not the brightness file inside that folder. Anyway, the solution didn't work for me, but I already had a /sys/class/backlight folder.
– Nobody
Nov 6 '16 at 14:08
5
One reason for "operation not permitted" may be that the file name contains characters that should be escaped. That was the case for me.
– Yan King Yin
May 6 '17 at 16:03
1
@YanKingYin How did you do that exactly?
– Mephisto
Jan 27 '18 at 7:02
|
show 4 more comments
That is completely normal. To find the directory for your backlight settings, do this:
sudo find /sys/ -type f -iname '*brightness*'
The output should give you something like this:
/sys/devices/pci0000:00/0000:00:02.0/drm/card0/card0-LVDS-1/intel_backlight/brightness
Now, all you have to do is link it to /sys/class/backlight
. To do that:
sudo ln -s /sys/devices/pci0000:00/0000:00:02.0/drm/card0/card0-LVDS-1/intel_backlight /sys/class/backlight
If you still get the error, then do this:
Create the file xorg.conf
:
sudo nano /etc/X11/xorg.conf
And add these lines:
Section "Device"
Identifier "Card0"
Driver "intel"
Option "Backlight" "NAME OF THE FOLDER"
EndSection
Then, to save the file do: Ctrl + X then Y then Enter.
Also, for the Driver
part check for your configuration, i.e., acpi_video0
or intel_backlight
.
That is completely normal. To find the directory for your backlight settings, do this:
sudo find /sys/ -type f -iname '*brightness*'
The output should give you something like this:
/sys/devices/pci0000:00/0000:00:02.0/drm/card0/card0-LVDS-1/intel_backlight/brightness
Now, all you have to do is link it to /sys/class/backlight
. To do that:
sudo ln -s /sys/devices/pci0000:00/0000:00:02.0/drm/card0/card0-LVDS-1/intel_backlight /sys/class/backlight
If you still get the error, then do this:
Create the file xorg.conf
:
sudo nano /etc/X11/xorg.conf
And add these lines:
Section "Device"
Identifier "Card0"
Driver "intel"
Option "Backlight" "NAME OF THE FOLDER"
EndSection
Then, to save the file do: Ctrl + X then Y then Enter.
Also, for the Driver
part check for your configuration, i.e., acpi_video0
or intel_backlight
.
edited Dec 31 '15 at 8:30
answered Dec 31 '15 at 8:20
RaphaelRaphael
6,00922143
6,00922143
2
What if there is already a folder on that path? How do I undo such a replacing ln -s if it breaks brightness (by now it's at least controllable from keyboard)? I've tried creatingxorg.conf
, added bothintel_backlight
and the long absolute path to the folder. But it didn't work. So should I: 1. Try ln -s cuz it's harmless 2. Try some other driver name (btw how do I know it otherwise part of the path?), or 3. Use not the path but the name of the folder (it would be same toDriver
field so that's why I'm asking)?
– mekkanizer
Apr 27 '16 at 1:01
8
In my computer if I open the file /sys/class/backlight/intel_backlight/brightness, I will see an integer value inside it. Just changed the value and saved, my screen immediatelly got the correct brightness. But if I try to use the ln command proposed, I dont have exactly the same folder, and if I try to do this with my intel_backlight folder, I get the error: ln: failed to create symbolic link '/sys/class/backlight/brightness': Operation not permitted
– user5193682
Oct 22 '16 at 15:25
1
@user9589 This sounds like a permission issue. You did execute the ln command as root, didn't you? And I think you were supposed to link the folder, not the brightness file inside that folder. Anyway, the solution didn't work for me, but I already had a /sys/class/backlight folder.
– Nobody
Nov 6 '16 at 14:08
5
One reason for "operation not permitted" may be that the file name contains characters that should be escaped. That was the case for me.
– Yan King Yin
May 6 '17 at 16:03
1
@YanKingYin How did you do that exactly?
– Mephisto
Jan 27 '18 at 7:02
|
show 4 more comments
2
What if there is already a folder on that path? How do I undo such a replacing ln -s if it breaks brightness (by now it's at least controllable from keyboard)? I've tried creatingxorg.conf
, added bothintel_backlight
and the long absolute path to the folder. But it didn't work. So should I: 1. Try ln -s cuz it's harmless 2. Try some other driver name (btw how do I know it otherwise part of the path?), or 3. Use not the path but the name of the folder (it would be same toDriver
field so that's why I'm asking)?
– mekkanizer
Apr 27 '16 at 1:01
8
In my computer if I open the file /sys/class/backlight/intel_backlight/brightness, I will see an integer value inside it. Just changed the value and saved, my screen immediatelly got the correct brightness. But if I try to use the ln command proposed, I dont have exactly the same folder, and if I try to do this with my intel_backlight folder, I get the error: ln: failed to create symbolic link '/sys/class/backlight/brightness': Operation not permitted
– user5193682
Oct 22 '16 at 15:25
1
@user9589 This sounds like a permission issue. You did execute the ln command as root, didn't you? And I think you were supposed to link the folder, not the brightness file inside that folder. Anyway, the solution didn't work for me, but I already had a /sys/class/backlight folder.
– Nobody
Nov 6 '16 at 14:08
5
One reason for "operation not permitted" may be that the file name contains characters that should be escaped. That was the case for me.
– Yan King Yin
May 6 '17 at 16:03
1
@YanKingYin How did you do that exactly?
– Mephisto
Jan 27 '18 at 7:02
2
2
What if there is already a folder on that path? How do I undo such a replacing ln -s if it breaks brightness (by now it's at least controllable from keyboard)? I've tried creating
xorg.conf
, added both intel_backlight
and the long absolute path to the folder. But it didn't work. So should I: 1. Try ln -s cuz it's harmless 2. Try some other driver name (btw how do I know it otherwise part of the path?), or 3. Use not the path but the name of the folder (it would be same to Driver
field so that's why I'm asking)?– mekkanizer
Apr 27 '16 at 1:01
What if there is already a folder on that path? How do I undo such a replacing ln -s if it breaks brightness (by now it's at least controllable from keyboard)? I've tried creating
xorg.conf
, added both intel_backlight
and the long absolute path to the folder. But it didn't work. So should I: 1. Try ln -s cuz it's harmless 2. Try some other driver name (btw how do I know it otherwise part of the path?), or 3. Use not the path but the name of the folder (it would be same to Driver
field so that's why I'm asking)?– mekkanizer
Apr 27 '16 at 1:01
8
8
In my computer if I open the file /sys/class/backlight/intel_backlight/brightness, I will see an integer value inside it. Just changed the value and saved, my screen immediatelly got the correct brightness. But if I try to use the ln command proposed, I dont have exactly the same folder, and if I try to do this with my intel_backlight folder, I get the error: ln: failed to create symbolic link '/sys/class/backlight/brightness': Operation not permitted
– user5193682
Oct 22 '16 at 15:25
In my computer if I open the file /sys/class/backlight/intel_backlight/brightness, I will see an integer value inside it. Just changed the value and saved, my screen immediatelly got the correct brightness. But if I try to use the ln command proposed, I dont have exactly the same folder, and if I try to do this with my intel_backlight folder, I get the error: ln: failed to create symbolic link '/sys/class/backlight/brightness': Operation not permitted
– user5193682
Oct 22 '16 at 15:25
1
1
@user9589 This sounds like a permission issue. You did execute the ln command as root, didn't you? And I think you were supposed to link the folder, not the brightness file inside that folder. Anyway, the solution didn't work for me, but I already had a /sys/class/backlight folder.
– Nobody
Nov 6 '16 at 14:08
@user9589 This sounds like a permission issue. You did execute the ln command as root, didn't you? And I think you were supposed to link the folder, not the brightness file inside that folder. Anyway, the solution didn't work for me, but I already had a /sys/class/backlight folder.
– Nobody
Nov 6 '16 at 14:08
5
5
One reason for "operation not permitted" may be that the file name contains characters that should be escaped. That was the case for me.
– Yan King Yin
May 6 '17 at 16:03
One reason for "operation not permitted" may be that the file name contains characters that should be escaped. That was the case for me.
– Yan King Yin
May 6 '17 at 16:03
1
1
@YanKingYin How did you do that exactly?
– Mephisto
Jan 27 '18 at 7:02
@YanKingYin How did you do that exactly?
– Mephisto
Jan 27 '18 at 7:02
|
show 4 more comments
Check your /sys/class/backlight
folder. If you can see an intel_backlight
folder there and still you are getting the above error then creating a /etc/X11/xorg.conf
file with the below configuration should work for you. It worked for me.
Section "Device"
Identifier "Intel Graphics"
Driver "intel"
Option "Backlight" "intel_backlight"
EndSection
Also, remember to logout and login again for the changes to take effect.
Reference:
https://wiki.archlinux.org/index.php/backlight
This answer is the most straightforward forintel_backlight
users.
– Serge Stroobandt
Oct 1 '18 at 20:57
add a comment |
Check your /sys/class/backlight
folder. If you can see an intel_backlight
folder there and still you are getting the above error then creating a /etc/X11/xorg.conf
file with the below configuration should work for you. It worked for me.
Section "Device"
Identifier "Intel Graphics"
Driver "intel"
Option "Backlight" "intel_backlight"
EndSection
Also, remember to logout and login again for the changes to take effect.
Reference:
https://wiki.archlinux.org/index.php/backlight
This answer is the most straightforward forintel_backlight
users.
– Serge Stroobandt
Oct 1 '18 at 20:57
add a comment |
Check your /sys/class/backlight
folder. If you can see an intel_backlight
folder there and still you are getting the above error then creating a /etc/X11/xorg.conf
file with the below configuration should work for you. It worked for me.
Section "Device"
Identifier "Intel Graphics"
Driver "intel"
Option "Backlight" "intel_backlight"
EndSection
Also, remember to logout and login again for the changes to take effect.
Reference:
https://wiki.archlinux.org/index.php/backlight
Check your /sys/class/backlight
folder. If you can see an intel_backlight
folder there and still you are getting the above error then creating a /etc/X11/xorg.conf
file with the below configuration should work for you. It worked for me.
Section "Device"
Identifier "Intel Graphics"
Driver "intel"
Option "Backlight" "intel_backlight"
EndSection
Also, remember to logout and login again for the changes to take effect.
Reference:
https://wiki.archlinux.org/index.php/backlight
edited Jul 30 '18 at 17:24
answered Jul 30 '18 at 16:08
user2749286user2749286
14114
14114
This answer is the most straightforward forintel_backlight
users.
– Serge Stroobandt
Oct 1 '18 at 20:57
add a comment |
This answer is the most straightforward forintel_backlight
users.
– Serge Stroobandt
Oct 1 '18 at 20:57
This answer is the most straightforward for
intel_backlight
users.– Serge Stroobandt
Oct 1 '18 at 20:57
This answer is the most straightforward for
intel_backlight
users.– Serge Stroobandt
Oct 1 '18 at 20:57
add a comment |
Every step required for 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.
add a comment |
Every step required for 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.
add a comment |
Every step required for 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.
Every step required for 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.
edited Feb 2 at 0:40
answered Feb 2 at 0:02
Serge StroobandtSerge Stroobandt
2,1311934
2,1311934
add a comment |
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%2f715306%2fxbacklight-no-outputs-have-backlight-property-no-sys-class-backlight-folder%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