try this, this seems to work for me:
If that doesn't work, try running this script:Code:#!/bin/bash rmmod rtl8187 rfkill block all rfkill unblock all modprobe rtl8187 rfkill unblock all ifconfig wlan0 up
Code:#!/bin/sh for i in /sys/class/rfkill/rfkill*/type; do type="`cat $i`" if [ "$type" = "wlan" ]; then n="`echo $i | sed -r 's%/type$%%'`"; echo 1 > ${n}/state; fi; done;



Thanks !
