12

I have a hp pavilion dv6 with xubuntu installed. however there isn't a way to change the screen brightness, i tried the fn plus scroll keys to no avail, any ideas?

pl1nk
  • 6,399

9 Answers9

11

Package name is xfce4-power-manager-plugins. Solved my brightness problem in xubuntu 10.04.2.

skorzen
  • 149
7
echo 1 | sudo tee /sys/class/backlight/acpi_video0/brightness

You can change:

  • Brightness from 1 to 10.
  • acpi_video0 or acpi_video1
kholis
  • 723
2

XFCE has a panel applet for changing brightness, I don't remember if it's installed, so search in packages (e.g. in synaptic) for XFCE and brightness. Then right-click on the panel to add it.

Borsook
  • 2,043
1
  1. Open your terminal
  2. Type sudo apt-get install xfce4-power-manager-plugins
  3. Enter your password and press y key to continue
  4. Right-click on the panel, Panel-> Panel Preferences...
  5. Come to the Items tab, click on Add new items button (+) and search for Power Manager Plugin
  6. Select it and click on the Add button
Mir Rahed Uddin
  • 619
  • 1
  • 8
  • 20
0

I had this problem, i unchecked "Power Manager" from "Application Autostart" list in Settings -> Session and Startup and added another application with this command xfce4-power-manager --no-daemon then i have not have this problem yet.

0

I've had this problem as well.

What fixed it for me was adding acpi_backlight=vendor to the kernel boot line. For more information see Brightness not working on an HP Pavilion Dv6 with a ATI Radeon HD6770M.

After doing this, I could change my brightness normally using the F2 and F3 keys.

cg505
  • 491
  • 1
  • 4
  • 15
0

What worked for me was modifying the /etc/default/grub file.

Change the line

GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"

to

GRUB_CMDLINE_LINUX_DEFAULT="quiet splash acpi_osi=Linux acpi_backlight=vendor"

Then in a terminal sudo update-grub and reboot.

More info here.

To Do
  • 15,502
0

You need to download the following files in /etc/acpi/ directory

Download video_brightnessup.sh from here

Download video_brightnessdown.sh from here

After replacing these scripts

No reboot or logout required, simply press your function combination on your laptop to change brightness. Try to press FN + Up/Down Arrow.

-1

You can use xgamma. The default value is 1.0, higher is brighter, lower is darker.

Example xgamma -gamma 0.9.

Anonymous
  • 11,699