I have an Asus N56JK computer and I have tried many different options such as updating the Grub file in /etc/default/grub but to no avail. All other Function keys seems to be working but only function keys used to adjust brightness are not working?
- 2,081
- 91
2 Answers
I have a Asus X551MA, here is what worked for me.
Update Grub;
Open
terminalwithCtrl+Alt+Ttype in
terminal;
gksudo gedit /etc/default/grubChange;
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
to
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash pcie_aspm=force acpi_osi="SaveandExitgedittype in
terminal;
sudo update-grubRestartyour computer; (Don't forget to bookmark this page)
sudo shutdown -r now
This should fix your issue, if not keep reading.
Create 20-intel.conf; Intel GFX card only!
Open
terminalwithCtrl+Alt+Ttype in
terminal;
cd /usr/share/X11/xorg.conf.dnow;
sudo touch 20-intel.confthen type;
gksudo gedit 20-intel.confCopy&Pastethe following lines into the document;Section "Device" Identifier "card0" Driver "intel" Option "Backlight" "intel_backlight" BusID "PCI:0:2:0" EndSectionSaveandExitthe document.Restartyour computer;
sudo shutdown -r now
This should work, if not keep reading.
Install 3.16 kernel for 14.04 LTS;
Update;
sudo apt-get updateInstall;
sudo apt-get install linux-image-generic-lts-utopic
That's all I got, sorry if this is incompatible with your set-up as there may be additional steps required, and I prefer to refrain from giving blind advice. I do recommend upgrading the kernel however, as this may be the solution you need, if you are using Ubuntu 14.10 or later there is no need to upgrade the kernel.
- 319
I have an ASUS UX305FA zenbook and the above suggestions re: messing around with /etc/default/grub ddidn't work for me.
This worked for me: https://github.com/thezerobit/asus-zenbook-ux305fa
Install xbacklight
sudo apt-get install xbacklight
In Keyboard settings, set up custom shortcuts to increase or decrease backlight by calling xbacklight -inc 10 or xbacklight -dec 10.
Edit: I own this laptop too and the xbacklight workaround does work. you should just not use the fn + f5/f6 buttons but use other keys, mine are ctrl + f3/f4. Also if i decrease too much, the screen will go entirely black..
- 83
- 81