Well... two things... I got ndiswrapper to work and the volume keys too... but well... step by step...
I downloaded the last version of ndiswrapper (
http://ndiswrapper.sourceforge.net/). The 0.6 one (this version solves they problems with smp processors)... installed following the instructions in the INSTALL file and worked quite well... my only problem was the comunication with the router.... but a guy in the mailing list of that project gave me the clue to solve it... you need to download one of the windows drivers of the Broadcomm wireless card...
My problem was to connect to my router that uses essid and wep key of 128 bits... with this line iwconfig finds it without problems:
Code: Select all
iwconfig wlan0 essid MY_ESSID key open s:MY_ASCII_KEY
dhcpd wlan0
In the case of the volume keys... I got them work thanks to an ACER forum here... in these forum they use the program: xev to see what codes generate the volume keys... and them... you create a file with these lines:
Code: Select all
keycode 174 = XF86AudioLowerVolume
keycode 176 = XF86AudioRaiseVolume
keycode 160 = XF86AudioMute
I call that file Xmodmap... then using the next command line
Code: Select all
/usr/bin/X11/xmodmap /route_to_the_file/Xmodmap
you can use the keys without problem... well... in my case... if you have kde... I don't know with other windows managers... with kde 3.2.0 automatically uses that keys to up or down the volume or mute or unmute...
You can create a .xsession file to automatically load that keys
Code: Select all
bash$ vi .xsession
exec /usr/bin/X11/xmodmap /etc/X11/Xmodmap &
in that forum they talk more about how to configure it in others windows managers... this is the link in case you want to check it:
http://forums.gentoo.org/viewtopic.php?t=129853
The Wireless buttom seems to work without problem doing nothing... it must work throught hardware... the other two buttoms I didn't test yest... I don't use too much under windows either... so... I'm not in a hurry to configure them...
David GP