0

I am using Toshiba Portege R835-P70 and function keys work as expected on Windows but they do not on Ubuntu 12.04. For e.g. Fn+F6 and Fn+F7 are supposed to change screen brightness but do not work.

What is the solution for this issue?

I tried adding GRUB_CMDLINE_LINUX_DEFAULT=”quiet splash acpi_backlight=vendor“ to /etc/default/grub, but it introduces an additional problem in that the laptop wakes up to a faintly visible dark screen from hibernation.

I know this is an old issue, but if it is so common, why isn't there a simple solution to it and why isn't it incorporated in latest versions of Ubuntu?

Thanks.

snoop
  • 4,040
  • 9
  • 40
  • 58

3 Answers3

0

Try this:

open your terminal and type this

sudo gedit /etc/default/grub

and find a line

GRUB_CMDLINE_LINUX_DEFAULT="quiet splash acpi_backlight=vendor"

and change it to like that. then close the editor and do sudo update-grub and give a restart. check it out now.

Ravexina
  • 55,668
  • 25
  • 164
  • 183
Raja G
  • 102,391
  • 106
  • 255
  • 328
  • I have already tried doing that. Above introduces an additional problem in that the screen boots to very faintly visible dark upon waking up from hibernation. – abhinavkulkarni May 26 '12 at 07:03
0

See a solution that worked on my Protege 705-P35 at Toshiba Portege Z830\Z835 [Linux Laptop Wiki]. To make the new script executable, type:

sudo chmod 755 /etc/pm/sleep.d/restore_brightness
Ravexina
  • 55,668
  • 25
  • 164
  • 183
Doug
  • 1
0

The following edit to /etc/default/grub helped me:

sudo nano `/etc/default/grub`

and then change the GRUB_CMDLINE_LINUX_DEFAULT to:

GRUB_CMDLINE_LINUX_DEFAULT="quiet splash pcie_aspm=force acpi_backlight=vendor" 

Then run update-grub and reboot.

Source

Fabby
  • 34,259
Venem
  • 201