On my dual boot laptop I noticed that maximum brightness in Ubuntu and Windows 8 is totally different. In Windows 8 the screen is much much brighter at maximum level than it is at Ubuntu maximum level. (I was even asked why my laptop display looks that dim.)
I have a Lenovo ThinkPad E330 Laptop with Intel HD 4000 graphics.
How can I increase the maximum brightness level Ubuntu uses?
did you try xrandr I had the opposite of your problem, my monitor was too bright and adjusted it using xrandr
you need to replace VGA1 with your current output, and replace 0.8 and 0.7 by 1.5 for example. by default they are all set to 1.
I hope this helps.
This worked for me, you could give it a try:
$ sudo gedit /etc/default/grub
Replace this line
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
withGRUB_CMDLINE_LINUX_DEFAULT="quiet splash acpi_backlight=vendor"
Save and close
$ sudo update-grub
reboot
Ubuntu has a preset range of values that it can give to any hardware device and assumes that they all use the same brightness values (which they don't) because the BIOS controls for Ubuntu are poorly coded.
The control is integrated into the window manager and can't be individually configured (same goes for the brightness OSD which can't be disabled without disabling power management altogether).
I filed a bug for this years ago.
I also had this problem with my HP 2560p on 16.04. For me it had to do with the light sensor. When I disabled the light sensor in /sys/devices/platform/hp-wmi/als (change 1 to 0) I could increase the brightness higher than before.