How to change brightness on puppy linux?
I just installed puppy linux but the screen is literally burning my eyes. The Fn+Brightness
key on my laptp doesn't work, I tried to go to setup and change the gamma but it just make the colors darker, the screen itself keeps being extremly bright so I think it's due to the backlight. How can I diminish the backlight or the thing that keeps the screen bright despite me lowering gamma ?
Edit : in fact when I'm in command prompt mode (GUI closed) the screen is still very bright. Is there a way to fix that too ?
Edit : I managed to add acpi_backlight=vendor
in grub as you can find on the internet to fix this problem but this doesn't change anything. Pressing Fn+arrow still doesn't work and changing the brightness file in acpi_video doesn't work either.
brightness puppy-linux
add a comment |
I just installed puppy linux but the screen is literally burning my eyes. The Fn+Brightness
key on my laptp doesn't work, I tried to go to setup and change the gamma but it just make the colors darker, the screen itself keeps being extremly bright so I think it's due to the backlight. How can I diminish the backlight or the thing that keeps the screen bright despite me lowering gamma ?
Edit : in fact when I'm in command prompt mode (GUI closed) the screen is still very bright. Is there a way to fix that too ?
Edit : I managed to add acpi_backlight=vendor
in grub as you can find on the internet to fix this problem but this doesn't change anything. Pressing Fn+arrow still doesn't work and changing the brightness file in acpi_video doesn't work either.
brightness puppy-linux
add a comment |
I just installed puppy linux but the screen is literally burning my eyes. The Fn+Brightness
key on my laptp doesn't work, I tried to go to setup and change the gamma but it just make the colors darker, the screen itself keeps being extremly bright so I think it's due to the backlight. How can I diminish the backlight or the thing that keeps the screen bright despite me lowering gamma ?
Edit : in fact when I'm in command prompt mode (GUI closed) the screen is still very bright. Is there a way to fix that too ?
Edit : I managed to add acpi_backlight=vendor
in grub as you can find on the internet to fix this problem but this doesn't change anything. Pressing Fn+arrow still doesn't work and changing the brightness file in acpi_video doesn't work either.
brightness puppy-linux
I just installed puppy linux but the screen is literally burning my eyes. The Fn+Brightness
key on my laptp doesn't work, I tried to go to setup and change the gamma but it just make the colors darker, the screen itself keeps being extremly bright so I think it's due to the backlight. How can I diminish the backlight or the thing that keeps the screen bright despite me lowering gamma ?
Edit : in fact when I'm in command prompt mode (GUI closed) the screen is still very bright. Is there a way to fix that too ?
Edit : I managed to add acpi_backlight=vendor
in grub as you can find on the internet to fix this problem but this doesn't change anything. Pressing Fn+arrow still doesn't work and changing the brightness file in acpi_video doesn't work either.
brightness puppy-linux
brightness puppy-linux
edited Mar 16 '15 at 19:36
asked Mar 16 '15 at 11:42
Wicelo
11113
11113
add a comment |
add a comment |
4 Answers
4
active
oldest
votes
Try this. See if /sys/class/backlight/acpi_video0/ exists. If it does
cat /sys/class/backlight/acpi_video0/max_brightness
gives the max allowed brightness, and you can set brightness thus (where X is a value 0-'max_brightness'):
echo X >/sys/class/backlight/acpi_video0/brightness
Unfortunately this doesn't work, I change brightness to 2 (max brightness = 7), restart the GUI but it doesn't change anything
– Wicelo
Mar 16 '15 at 12:56
did the value you set definitely take? you could try this as alternative:tee /sys/class/backlight/acpi_video0/brightness <<< 2
. Have a look at more suggestions here.
– gogoud
Mar 16 '15 at 13:10
well when I restart GUIactual_brightness
is set to 2
– Wicelo
Mar 16 '15 at 13:29
in fact it's not only the GUI but also the screen while in command prompt mode too.
– Wicelo
Mar 16 '15 at 13:35
1
oh dear. I think a solution, if there is one, will be quite hardware-specific, prob good idea to add details of your hardware (i.e. exact laptop model) in the question.
– gogoud
Mar 16 '15 at 13:59
|
show 5 more comments
Have just tried echo X >/sys/class/backlight/acpi_video0/brightness
on my HP 6450b with Puppy 5.7.1 and it does the job fine.
add a comment |
my speculation success, i use "echo 200 >/sys/class/backlight/intel_backlight/brightness" where my max brightness on intel_backlight is 976. ACER 4741 Intel Display
add a comment |
echo 300 >/sys/class/backlight/intel_backlight/brightness
works for IGPs (Integrated Graphic Processors), like Intel chips.
echo X >/sys/class/backlight/acpi_video0/brightness
probably for external graphics cards.
New contributor
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "106"
};
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: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
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%2funix.stackexchange.com%2fquestions%2f190464%2fhow-to-change-brightness-on-puppy-linux%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
4 Answers
4
active
oldest
votes
4 Answers
4
active
oldest
votes
active
oldest
votes
active
oldest
votes
Try this. See if /sys/class/backlight/acpi_video0/ exists. If it does
cat /sys/class/backlight/acpi_video0/max_brightness
gives the max allowed brightness, and you can set brightness thus (where X is a value 0-'max_brightness'):
echo X >/sys/class/backlight/acpi_video0/brightness
Unfortunately this doesn't work, I change brightness to 2 (max brightness = 7), restart the GUI but it doesn't change anything
– Wicelo
Mar 16 '15 at 12:56
did the value you set definitely take? you could try this as alternative:tee /sys/class/backlight/acpi_video0/brightness <<< 2
. Have a look at more suggestions here.
– gogoud
Mar 16 '15 at 13:10
well when I restart GUIactual_brightness
is set to 2
– Wicelo
Mar 16 '15 at 13:29
in fact it's not only the GUI but also the screen while in command prompt mode too.
– Wicelo
Mar 16 '15 at 13:35
1
oh dear. I think a solution, if there is one, will be quite hardware-specific, prob good idea to add details of your hardware (i.e. exact laptop model) in the question.
– gogoud
Mar 16 '15 at 13:59
|
show 5 more comments
Try this. See if /sys/class/backlight/acpi_video0/ exists. If it does
cat /sys/class/backlight/acpi_video0/max_brightness
gives the max allowed brightness, and you can set brightness thus (where X is a value 0-'max_brightness'):
echo X >/sys/class/backlight/acpi_video0/brightness
Unfortunately this doesn't work, I change brightness to 2 (max brightness = 7), restart the GUI but it doesn't change anything
– Wicelo
Mar 16 '15 at 12:56
did the value you set definitely take? you could try this as alternative:tee /sys/class/backlight/acpi_video0/brightness <<< 2
. Have a look at more suggestions here.
– gogoud
Mar 16 '15 at 13:10
well when I restart GUIactual_brightness
is set to 2
– Wicelo
Mar 16 '15 at 13:29
in fact it's not only the GUI but also the screen while in command prompt mode too.
– Wicelo
Mar 16 '15 at 13:35
1
oh dear. I think a solution, if there is one, will be quite hardware-specific, prob good idea to add details of your hardware (i.e. exact laptop model) in the question.
– gogoud
Mar 16 '15 at 13:59
|
show 5 more comments
Try this. See if /sys/class/backlight/acpi_video0/ exists. If it does
cat /sys/class/backlight/acpi_video0/max_brightness
gives the max allowed brightness, and you can set brightness thus (where X is a value 0-'max_brightness'):
echo X >/sys/class/backlight/acpi_video0/brightness
Try this. See if /sys/class/backlight/acpi_video0/ exists. If it does
cat /sys/class/backlight/acpi_video0/max_brightness
gives the max allowed brightness, and you can set brightness thus (where X is a value 0-'max_brightness'):
echo X >/sys/class/backlight/acpi_video0/brightness
answered Mar 16 '15 at 12:37
gogoud
1,700716
1,700716
Unfortunately this doesn't work, I change brightness to 2 (max brightness = 7), restart the GUI but it doesn't change anything
– Wicelo
Mar 16 '15 at 12:56
did the value you set definitely take? you could try this as alternative:tee /sys/class/backlight/acpi_video0/brightness <<< 2
. Have a look at more suggestions here.
– gogoud
Mar 16 '15 at 13:10
well when I restart GUIactual_brightness
is set to 2
– Wicelo
Mar 16 '15 at 13:29
in fact it's not only the GUI but also the screen while in command prompt mode too.
– Wicelo
Mar 16 '15 at 13:35
1
oh dear. I think a solution, if there is one, will be quite hardware-specific, prob good idea to add details of your hardware (i.e. exact laptop model) in the question.
– gogoud
Mar 16 '15 at 13:59
|
show 5 more comments
Unfortunately this doesn't work, I change brightness to 2 (max brightness = 7), restart the GUI but it doesn't change anything
– Wicelo
Mar 16 '15 at 12:56
did the value you set definitely take? you could try this as alternative:tee /sys/class/backlight/acpi_video0/brightness <<< 2
. Have a look at more suggestions here.
– gogoud
Mar 16 '15 at 13:10
well when I restart GUIactual_brightness
is set to 2
– Wicelo
Mar 16 '15 at 13:29
in fact it's not only the GUI but also the screen while in command prompt mode too.
– Wicelo
Mar 16 '15 at 13:35
1
oh dear. I think a solution, if there is one, will be quite hardware-specific, prob good idea to add details of your hardware (i.e. exact laptop model) in the question.
– gogoud
Mar 16 '15 at 13:59
Unfortunately this doesn't work, I change brightness to 2 (max brightness = 7), restart the GUI but it doesn't change anything
– Wicelo
Mar 16 '15 at 12:56
Unfortunately this doesn't work, I change brightness to 2 (max brightness = 7), restart the GUI but it doesn't change anything
– Wicelo
Mar 16 '15 at 12:56
did the value you set definitely take? you could try this as alternative:
tee /sys/class/backlight/acpi_video0/brightness <<< 2
. Have a look at more suggestions here.– gogoud
Mar 16 '15 at 13:10
did the value you set definitely take? you could try this as alternative:
tee /sys/class/backlight/acpi_video0/brightness <<< 2
. Have a look at more suggestions here.– gogoud
Mar 16 '15 at 13:10
well when I restart GUI
actual_brightness
is set to 2– Wicelo
Mar 16 '15 at 13:29
well when I restart GUI
actual_brightness
is set to 2– Wicelo
Mar 16 '15 at 13:29
in fact it's not only the GUI but also the screen while in command prompt mode too.
– Wicelo
Mar 16 '15 at 13:35
in fact it's not only the GUI but also the screen while in command prompt mode too.
– Wicelo
Mar 16 '15 at 13:35
1
1
oh dear. I think a solution, if there is one, will be quite hardware-specific, prob good idea to add details of your hardware (i.e. exact laptop model) in the question.
– gogoud
Mar 16 '15 at 13:59
oh dear. I think a solution, if there is one, will be quite hardware-specific, prob good idea to add details of your hardware (i.e. exact laptop model) in the question.
– gogoud
Mar 16 '15 at 13:59
|
show 5 more comments
Have just tried echo X >/sys/class/backlight/acpi_video0/brightness
on my HP 6450b with Puppy 5.7.1 and it does the job fine.
add a comment |
Have just tried echo X >/sys/class/backlight/acpi_video0/brightness
on my HP 6450b with Puppy 5.7.1 and it does the job fine.
add a comment |
Have just tried echo X >/sys/class/backlight/acpi_video0/brightness
on my HP 6450b with Puppy 5.7.1 and it does the job fine.
Have just tried echo X >/sys/class/backlight/acpi_video0/brightness
on my HP 6450b with Puppy 5.7.1 and it does the job fine.
edited Aug 22 '15 at 23:21
don_crissti
49.7k15131160
49.7k15131160
answered Aug 22 '15 at 22:32
Leon
1
1
add a comment |
add a comment |
my speculation success, i use "echo 200 >/sys/class/backlight/intel_backlight/brightness" where my max brightness on intel_backlight is 976. ACER 4741 Intel Display
add a comment |
my speculation success, i use "echo 200 >/sys/class/backlight/intel_backlight/brightness" where my max brightness on intel_backlight is 976. ACER 4741 Intel Display
add a comment |
my speculation success, i use "echo 200 >/sys/class/backlight/intel_backlight/brightness" where my max brightness on intel_backlight is 976. ACER 4741 Intel Display
my speculation success, i use "echo 200 >/sys/class/backlight/intel_backlight/brightness" where my max brightness on intel_backlight is 976. ACER 4741 Intel Display
answered Mar 10 at 6:34
Hendrik
1
1
add a comment |
add a comment |
echo 300 >/sys/class/backlight/intel_backlight/brightness
works for IGPs (Integrated Graphic Processors), like Intel chips.
echo X >/sys/class/backlight/acpi_video0/brightness
probably for external graphics cards.
New contributor
add a comment |
echo 300 >/sys/class/backlight/intel_backlight/brightness
works for IGPs (Integrated Graphic Processors), like Intel chips.
echo X >/sys/class/backlight/acpi_video0/brightness
probably for external graphics cards.
New contributor
add a comment |
echo 300 >/sys/class/backlight/intel_backlight/brightness
works for IGPs (Integrated Graphic Processors), like Intel chips.
echo X >/sys/class/backlight/acpi_video0/brightness
probably for external graphics cards.
New contributor
echo 300 >/sys/class/backlight/intel_backlight/brightness
works for IGPs (Integrated Graphic Processors), like Intel chips.
echo X >/sys/class/backlight/acpi_video0/brightness
probably for external graphics cards.
New contributor
New contributor
answered 25 mins ago
H B
1
1
New contributor
New contributor
add a comment |
add a comment |
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- 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.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- 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%2funix.stackexchange.com%2fquestions%2f190464%2fhow-to-change-brightness-on-puppy-linux%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