- Jul 9, 2010
- 3,483
- 436
This may also work on the Archos 7 Home Tablet
Credits to alangor on Slatedroid.
You need to access your device using adb, or DroidExplorer.
The file you need to modify is:
/data/misc/wifi/wpa_supplicant.conf
(adb pull /data/misc/wifi/wpa_supplicant.conf)
Open this with notepad++ or Wordpad, as a txt file.
You will see something like the following. Ignore the arrows and change the bolded parts to match:
Now replace the original file that is on your device. Your device will now attempt to connect to your Adhoc network.
(adb push wpa_supplicant.conf /data/misc/wifi/wpa_supplicant.conf)
If you setup a new connection, these settings will be overwritten.
Credits to alangor on Slatedroid.
You need to access your device using adb, or DroidExplorer.
The file you need to modify is:
/data/misc/wifi/wpa_supplicant.conf
(adb pull /data/misc/wifi/wpa_supplicant.conf)
Open this with notepad++ or Wordpad, as a txt file.
You will see something like the following. Ignore the arrows and change the bolded parts to match:
Code:
ctrl_interface=/data/system/wpa_supplicant
ctrl_interface_group=1000
update_config=1
[B]eapol_version=1[/B] <--------------- Add this
[B]ap_scan=2[/B] <---------------------- Add this
network={
[B]ssid="MY_WIFI_NETWORK_NAME"[/B] <--------------Wifi name
[B]scan_ssid=1[/B] <------------Add this
key_mgmt=NONE
[B]wep_key0=1234567800[/B] <------- WEP key password you set
mode=1
priority=1
}
(adb push wpa_supplicant.conf /data/misc/wifi/wpa_supplicant.conf)
If you setup a new connection, these settings will be overwritten.