full of … these

Fix slow keyboard on Dell Inspiron 1501

Posted: January 7th, 2009 | Author: | Filed under: fun, howto | Tags: , , , , , , , , | 84 Comments »

One of my colleague asked me to take a look at her laptop and check why the characters appear so slow sometimes.
At that moment I thought it’s a software issue. After several checks we reinstalled the XP but the problem persisted. So, we sent the notebook to the service.
After one month, we received it untouched with the following resolution: please reinstall the OS :) .
Ok then…

So I started to investigate by killing unneeded processes.
I have started with ati2evxx.exe.
I was lucky, after two days of tests it seems that this was the problem.
The exe is started by a service named ati hotkey poller (I can’t remember exactly right now).
This process is installed together with the Ati driver (catalyst).
I have changed the service settings to not start at boot time (it cannot be stopped) and rebooted.

The problem was resolved.

On another dell inspiron 1501, but with newer drivers, in the control center the hot key service is disabled by default. In the version from the CD with the drivers, the hot key service is enabled by default.

Update 1: Show me your happy face! if this works for you, you saved at least 500 euro…
Leave a comment if this fixed your laptop.

Update 2:

Edwin suggested below that the cause of this lag is because your batter is too old and you should replace it.
To test it, remove the battery and start your Dell.

If the battery replacement fixed the problem please leave a comment.


Fun with AC/DC and Excel

Posted: October 27th, 2008 | Author: | Filed under: fun, music, online | Tags: , , , | 2 Comments »

Have fun with the new AC/DC album ‘Black Ice’.
You can listen and watch the video in Excel:

Via: http://www.techeblog.com/index.php/tech-gadget/ac-dc-music-video-recreated-in-microsoft-excel

The excel file is here: http://www.acdcrocks.com/excel/

Rock on!


opensuse 11 on dell inspiron 1501 and dell vostro 1510

Posted: August 14th, 2008 | Author: | Filed under: fun, howto, linux | Tags: , , , , , , | 14 Comments »

I got a new laptop from work, first thing to do with? … of course, install linux….
because ubuntu disappointed me, hdd problem convinced me to try something else (any distro you may chose, i’m pretty sure you have to hack drivers).

From previous experience with dell 1501, i prefered opensuse 11.0.
On 1501, everything was smooth: ndiswrapper for wifi (fwcutter and restricted driver are unstable) ati driver from the opensuse’s page (check http://en.opensuse.org/Ati).
Graphic performaces? Not even like in windows, too bad.

Now let’s get back to vostro 1510.
After installing opensuse 11 with gnome, the keyboard and touch pad did not work.
No fix on google.
No problem let’s try kde (last kde I had used was on redhat 9, that’s on 2003-2004).
After several minutes and one reboot I could log in. Strange to work with kde but not with gnome.
Those guys from gentoo said it’s becuase ACPI. Anyway it works.
Now let’s fix network:
- the wired network :)

rmmod/modprobe r8169 driver to have the wired internet working

- the wireless network

ndiswrapper saves the day, I’ll not give details, I add the fact that I have used XP drivers from dell.com.

For the video card:

go to opensuse’s page download the ymp file and use it with yast. For compiz use simple-ccsm.

Conclusions:

- opensuse 11.0 works better on dell 1501 than ubuntu (i have tried with ubuntu 6.06, 7.10 and 8.04);
- i have no ideea why gnome did not work (the keyboard was not working) and kde succeded to be used on vostro 1501;
- ubuntu is not the only and last alternative to windows on your desktop or laptop, I still have ubuntu installed, but sometime is a pain to modify/hack it;
- the video card from vostro (Nvidia Geforce 8400M) performs as expected (2600fps when running glxgears), compiz works perfect;
- no hdd problems when running opensuse on these two laptops, no need to modify the power management of the harddisk to save it’s life.

I’ll write more about these linux distro in combination with the laptops I have around.


That's the spirit

Posted: June 14th, 2008 | Author: | Filed under: fun | Tags: , | 1 Comment »

Metallica-country version in Bulgaria (violin + accordion)


apache + mod_ssl, 12263 error

Posted: March 13th, 2008 | Author: | Filed under: fun, howto, linux | Tags: , , , , , | 2 Comments »

Recently I wanted to enable https on a opensuse 10.2 server. After generating certificates using easy-rsa from openvpn package, and installing them in apache’s config I got an 12263 error in firefox.

Searching logs didn’t help: only messages about “Invalid method in request \x16\x03\x01“.

Googling for about 30-40 minutes didn’t help but i have found the following link:

http://en.opensuse.org/Apache_Howto_SSL

where, at the end of the page says:

to check your vhost setup, use "httpd2 -S -DSSL"

Cause: client speaks HTTPS, server speaks HTTP. If that happens to be port 443, it means that the server is listening on the port but not with SSL.

I went in apache’s config from sysconfig (/etc/sysconfig/apache2) and I have added “SSL” like below:

APACHE_SERVER_FLAGS="SSL"

and it worked :) .