I recently purchased a new laptop HP DV6121tx and installed linux on it. Apart from the muxless switchable graphics and openGL (HP will release a BIOS update to fix it soon), and brightness control, everything worked. I couldn’t change the brightness using the Fn Hotkeys. They displayed the brightness applet on pressing but nothing happened.
After scavenging, what seemed like the whole WWW, I finally found a modified kernel by Kamal Mostafa which fixed the issue. You can see the bug reports and patch here.
The issue seemed to be with i915 kernel module and how it handled brightness on certain laptops which had different ACPI implementation.
Only install this kernel if you are using i915 kernel module. You can check if its active by executing:
lsmod | grep i915 |
If it gives you output, it means you’re using the i915 kernel module and you can proceed further. If it doesn’t give any output, you should leave this page.
Fix the brightness issue by installing kernel debs provided in Kamal’s PPA.
sudo add-apt-repository ppa:kamalmostafa/linux-kamal-mjgbacklight sudo apt-get update sudo apt-get dist-upgrade |
This will install the modified kernel. Alternatively, you could do (not recommended):
|
Reboot into the modified kernel to confirm the brightness keys work. Cheers!
Jul 13, 2011 18
[Solved] Disqus causing admin panel issues in wordpress
Disqus comment system was causing javascript errors, which in chrome console looked something like this:
Uncaught Syntax error, unrecognized expression: [href=edit-comments.php?page=disqus]
It caused unmovable widgets, screen-options didn’t open and other related javascript issues in admin panel.
After some researching it turns out, there’s a simple fix.
In /wp-content/plugins/disqus-comment-system/disqus.php, find:
href=edit-comments.php?page=disqus
and replace it with:
href=”edit-comments.php?page=disqus”
Cheers