AgentD! schrieb:
Also ich habe ndiswrapper -r ausgeführt, und hatte keinen hänger oder ähnliches.
vielleicht, hast Du einen alten Kernel oder so, oder Du hast die falsche ndiswrapper Version.
MfG
AgentD!
noenoe,
andromeda:~ # uname -a
Linux andromeda 2.6.8-24.14-default #1 Tue Mar 29 09:27:43 UTC 2005 i686 i686 i386 GNU/Linux
andromeda:~ # less /var/log/messages
...
May 26 17:56:48 andromeda kernel: usb 1-1: new full speed USB device using address 3
May 26 17:56:54 andromeda kernel: hdb:
May 26 17:56:59 andromeda last message repeated 3 times
May 26 17:57:02 andromeda /etc/hotplug/usb/S54: start add
May 26 17:57:02 andromeda /etc/hotplug/usb/S54: modprobe ndiswrapper debug=1
May 26 17:57:03 andromeda kernel: module ndiswrapper unsupported by SUSE/Novell, tainting kernel.
May 26 17:57:03 andromeda kernel: ndiswrapper version 1.2rc1 loaded (preempt=no,smp=no)
May 26 17:57:03 andromeda kernel: ndiswrapper: driver se4501d (Siemens AG,02/15/2005, 3.3.13.1) loaded
May 26 17:57:03 andromeda kernel: hdb:
May 26 17:57:06 andromeda kernel: ndiswrapper (NdisWriteErrorLogEntry:303): log: C000138A, count: 3 (00000103), return address: dce05a12
May 26 17:57:06 andromeda kernel: ndiswrapper (NdisWriteErrorLogEntry:303): log: C000138A, count: 3 (c0000001), return address: dcdf10ee
May 26 17:57:10 andromeda /etc/hotplug/usb/S54: exit. /proc/bus/usb/001/003 was added
May 26 17:57:10 andromeda kernel: wlan0: ndiswrapper ethernet device 00:01:e3:09:36:37 using driver se4501d, configuration file 083A:4502.0.conf
May 26 17:57:10 andromeda kernel: wlan0: encryption modes supported: WEP, WPA with TKIP, WPA with AES/CCMP
May 26 17:57:10 andromeda kernel: usbcore: registered new driver ndiswrapper
...
und als nette dreingabe fuer alle "modprobe"-genervten:
andromeda:/etc/hotplug/usb # ls -l /etc/hotplug/usb/S*
-rwxr-xr-x 1 root root 489 2005-05-26 17:47 /etc/hotplug/usb/S54
-rw-r--r-- 1 root root 327 2005-05-26 17:50 /etc/hotplug/usb/S54.usermap
andromeda:/etc/hotplug/usb # cat /etc/hotplug/usb/S54
#!/bin/bash
# Script to load ndiswrapper, triggered by plugging in.
# jr test 20050523, blinder versuch mangels schnell zu findender doku zu hotplug-usb
CMD="modprobe ndiswrapper debug=1"
# Uncomment this for debug.
logger -t $0 "start ${ACTION}"||:
if [ "${ACTION}" = "add" ]; then
logger -t $0 "${CMD}"||:
$CMD
# Also debug
if [ -f "${DEVICE}" ]; then
logger -t $0 "exit. ${DEVICE} was added"||:
fi
exit
fi
logger -t $0 "just exit for action:" "${ACTION}"||:
andromeda:/etc/hotplug/usb # cat /etc/hotplug/usb/S54.usermap
# Siemens usb adapter 54 wlan
# jr test 20050523
#just a guess (where is the f... manpage?):
#scriptname ??? ID-1 ID-2 ???...
S54 0x0003 0x083a 0x4502 0x0000 0x0000 0x00 0x00 0x00 0x00 0x00 0x00 0x00000000
andromeda:/etc/hotplug/usb #
sorry fuer die wrap-arrounds - falls die so ankommen, wie sie grad aussehen. aber die erste datei ist als script nicht schwer zu verstehen, die 2. besteht aus genau 1. zeile nichtkommentar - beispiel im ordner ansehen. klappt bei mir jedenfalls, siehe /messages.
wenn modprobe -r bei dir keine probleme gibt, dann evtl deshalb, weil das device noch belegt ist und daher das modul garnicht entladen wird. kriegst du beim 2. x modpr-r einen fehler (kein modul)? oder ist in lsmod immer noch ndiswrapper zu finden? was passiert denn, wenn du den usb-stecker bei stehender verbindung ziehst?
was ich noch nicht probiert hab, ist ndis1.1, evtl ist die stabiler als 1.2-rc1. aber wie gesagt, der mist haengt sich bei mir sogar unter win auf - als ob ich im leben schon mal brauchbare siemens-sw gesehen haette
so, und schnell raus damit, diesmal von ***x aus
jOERG