I have an HP EliteBook 8530w and recently I installed OpenSuse 11.3. I have one problem which is quite annoying. When I put the computer to suspend and wake it up later, the brightness of the screen is stuck at the lowest brightness. There’s no way I can change it after it wakes up from suspend. Adjusting the brightness using the slide bar in power management doesn’t do anything. Does anyone else have this problem or knows what to do to fix it?
NOTE: It is generally helpful to include a little hardware information, in this case esp. your video card. It will help your forum posts in the future. That said, WELCOME!!
I looked up your model and found that it this laptop is available with either ATI FireGl or NVidia Quadro video cards.
I’m going to assume you have the nvidia card, only because this card has been reported to exhibit the problem you have described. You might try this fix someone suggested:
Add following line to NVidia Device section in xorg.conf:
Option “RegistryDwords” “EnableBrightnessControl=1”
You can give it a try, anyway. Good luck and welcome again.
Thanks for the quick reply. I’m sorry I didn’t include more information, I thought just the model type would be enough. I didn’t know this laptop also has a version with an ATI graphics card. In any case, I have the NVidia.
I tried to do what you suggest, but I can’t find xorg.conf. I read that recent versions of X don’t require this anymore, so I don’t know how I can add this parameter. There is a xorg.conf.d directory though, which contains several conf files. What to do? Also, where do you get the information for the fix?
You want to edit the nvidia section of 50-device.conf, I believe.
Here is a helpful resource for messing around with these settings: SDB:Configuring graphics cards. You’ll find the suggestion to edit 50-device.conf in subpoint 4.4.
It’s been a while I haven’t posted back on this thread. In the meantime, I have upgraded to OpenSuse 11.4 but I still have the same problem, i.e. I can’t control the brightness after returning from suspend and the brightness is automatically set at the lowest possible value. As far as I know, the scripts of pm-utils are executed when suspending and resuming. The directory etc/pm/sleep.d has only script, at99, with the following content:
#!/bin/bash
. $PM_UTILS_LIBDIR/functions
case "$1" in
hibernate|suspend)
stopservice atd
;;
thaw|resume)
restartservice atd
;;
*)
;;
esac
exit 0
I have googled for this atd but I couldn’t find anything. Also, I don’t know if this is part of the problem. Maybe it has more something to do with ACPI not correctly being restarted or something?
Please help me out with this problem as it is really annoying.