[SOLVED] Brightness issue -- ASUS 1001p - Printable Version +- Linux Lite Forums (https://www.freecinema2022.gq/forums) +-- Forum: Hardware - Support (https://www.freecinema2022.gq/forums/forumdisplay.php?fid=6) +--- Forum: Video Cards (https://www.freecinema2022.gq/forums/forumdisplay.php?fid=22) +--- Thread: [SOLVED] Brightness issue -- ASUS 1001p (/showthread.php?tid=1190) |
Re: Brightness issue -- ASUS 1001p - rokytnji - 12-03-2014 For infos sake since I really do not know what to say next in this thread. The location for backlight info in linux-lite is in I am lost because Chris_OC tried the recommended grub kernel argument parameters to get his brightness working but said Quote:I searched the web and found references to this problem with other versions of Linux revolving around editing the line GRUB_CMDLINE_LINUX_DEFAULT. I found two different edits, written as follows: Sorry Chris. I am out of ideas on this one. Re: Brightness issue -- ASUS 1001p - Chris_OC - 12-03-2014 Thanks anyway -- I appreciate your looking into it. Just FYI, I took a look at the three "brightness" files there (actual, max, and just plain brightness) and they all read 125. This might explain why I don't get any changes with the brightness plug-in, but I don't know how to edit them, or if that's even possible. I found that I can't make changes from the File Manager; I can edit them, but they won't save from there. Re: Brightness issue -- ASUS 1001p - rokytnji - 12-03-2014 Yeah, something is not right try Code: sudo echo 1000 > /sys/class/backlight/intel_backlight/brightness Just to see if things get brighter or dimmer. Mine is at Code: harry@harry-Latitude-XT2:~$ cd /sys/class/backlight/intel_backlight/ whose values are way higher than yours. Re: Brightness issue -- ASUS 1001p - rokytnji - 12-03-2014 Here is hoping I am on to something Code: harry@harry-Latitude-XT2:~$ cat /var/log/Xorg.0.log | grep backlight You might be missing acpi_video0 maybe? In case you are wondering where I am getting my flaky ideas. http://rog.asus.com/forum/showthread.php?41681-G75VW-Fn-Keys-Not-Working-For-Screen-Brightness-In-Linux http://www.linlap.com/linlap.com?do=search&id=asus+1000 Re: Brightness issue -- ASUS 1001p - Chris_OC - 12-04-2014 (12-03-2014, 11:13 PM)rokytnji link Wrote: Yeah, something is not right I get "permission denied" -- how do I bypass that? Re: Brightness issue -- ASUS 1001p - rokytnji - 12-04-2014 Try it as root then Code: sudo -s login. You should get a # prompt. Instead of $. Then Code: echo 1000 > /sys/class/backlight/intel_backlight/brightness without the sudo. Re: Brightness issue -- ASUS 1001p - Chris_OC - 12-04-2014 (12-03-2014, 11:22 PM)rokytnji link Wrote: You might be missing acpi_video0 maybe? I have this: /sys/class/backlight/acpi_video0$ -- the system adds the $ sign. And your ideas are not flaky, at least that I can tell. I know next to nothing about this stuff, so I'm in no position to judge, at any rate. EDIT: I got permission, but now the command Code: echo 1000 > /sys/class/backlight/intel_backlight/brightness gives me an write error for invalid argument. Re: Brightness issue -- ASUS 1001p - rokytnji - 12-04-2014 The 1000 number was a wild guess on my part with the low number you gave earlier so that is why probably the invalid argument kicked in. Re: Brightness issue -- ASUS 1001p - Chris_OC - 12-04-2014 What does that number refer to? I tried lower numbers just for the heck of it, and that didn't seem to make any difference. Re: Brightness issue -- ASUS 1001p - rokytnji - 12-04-2014 The number refers to what I gather from below http://askubuntu.com/questions/149054/how-to-change-lcd-brightness-from-command-line-or-via-script |