5

I have a Lenovo IdeaPad Yoga. It's been working flawlessly with Windows 8 - 9 hour battery life, awesome touchscreen, 4-second boot times.

So obviously I wanted to try Ubuntu 12.10. Well, I downloaded it and installed it - but I couldn't change the brightness!

These hotkeys work in Windows but not in Ubuntu - and none of the solutions others have proposed in other similar questions with Lenovo laptops have worked.

How can I make my brightness hotkeys work?

Jorge Castro
  • 71,754

3 Answers3

8

FOR 12.10

Okay, I found an answer in this page.

This solved my brightness problems permanently:

sudo gedit /etc/default/grub

You will find this line in the new opened window:

GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"

Change it to:

GRUB_CMDLINE_LINUX_DEFAULT="quiet splash acpi_backlight=vendor"

Save and close the window and type this in the terminal:

sudo update-grub

and reboot.

FOR 13.04

  1. Add the acpi_backlight=vendor to your grub default command line
  2. Run the update-grub command
  3. blacklist the ideapad_laptop by adding "blacklist ideapad_laptop" to your /etc/modprobe.d/blacklist.conf file.
  4. Reboot
2

I have another solution:

GRUB_CMDLINE_LINUX="acpi_osi=\"!Windows 2012\""

and

sudo update-grub

fixed it for me.

cebor
  • 185
0

Another solution for my Lenovo G480:

  1. sudo nano /etc/default/grub

  2. Change the line GRUB_CMDLINE_LINUX="quiet splash" into:

    GRUB_CMDLINE_LINUX="quiet splash acpi_osi=Linux"

  3. sudo update-grub

  4. Restart your Linux

This fix should work for another Lenovo models.

Maxwel Leite
  • 2,354