I have Ubuntu 14.04 32 bit machine on my lenovo g580. Default brightness keys are not working and can't decrease brightness in settings also. The brightness has been fixed at maximum. I followed few similar questions and modified grub document in /etc/default/grub, but I'm not being able to save this file after modification. Even though I have logged in as admin.It shows "You do not have the necessary permission to save the file", when I tried "save as" in the same location with the same name.
What should I do to decrease brightness? Please help.
Asked
Active
Viewed 6,256 times
0
kevy
- 688
Subrahmanya Sriram
- 25
- 1
- 7
2 Answers
1
Add a simple line : quiet splash acpi_backlight=vendor to grub
gksudo gedit /etc/default/grubReplace
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
withGRUB_CMDLINE_LINUX_DEFAULT="quiet splash nomodeset acpi_backlight=vendor"sudo update-grub && sudo reboot
It worked on:
- Ubuntu 12.04 LTS (Asus U31SD-XH51 )
- Ubuntu 14.04 LTS (Dell 14z)
- Ubuntu 14.04 LTS (Lenovo g500, remove
nomodesetand it will work fine)
You could try adding a line to /etc/rc.local that will set the desired brightness level. To edit the file, run gksudo gedit /etc/rc.local and add following line:
echo X > /sys/class/backlight/intel_backlight/brightness
Substitute the X by the desired brightness level.
0
Try this:
- Open the Terminal app (Ctrl+Alt+T)
- Type
gksudo gedit - Type your password when asked for it (it will not show nothing, even asterisks) and press Enter
- Text editor will open up
- Then select Open and open the file to edit
- Edit the file
- Save the file
David Foerster
- 36,890
- 56
- 97
- 151
0x2b3bfa0
- 9,110
- 7
- 38
- 55