| lucky13  
 
 
 
 
 Group: Members
 Posts: 1478
 Joined: Feb. 2007
 | 
|  | Posted: Jan. 18 2008,01:42 |  |  You need a delay between the  modprobe and iwconfig commands (you can put those all on one line) so the module has time to load; you might also add one after the ndiswrapper -i command. The script called by the ndiswrapper GUI has a sleep 5, which has been adequate for me.
 (/usr/local/bin/ndiswrapper.sh)
 
 | Code Sample |  | #!/bin/bash ndiswrapper -i "$1"
 modprobe ndiswrapper
 sleep 5
 iwconfig "$2" essid "$3"
 if [ -n "$4" ]; then
 iwconfig "$2" enc "$4"
 fi
 pump -i "$2"
 | 
 
 --------------
 "It felt kind of like having a pitbull terrier on my rear end."
 -- meo (copyright(c)2008, all rights reserved)
 |