让你的安卓设备跟IBM网络联接

Android Devices on IBM Network
Want to get your Android device on IBM network? If you have root access and the Android SDK installed, here’s how:

run ‘adb shell ls -l /data/misc/wifi’ and note the permission and owner of ‘wpa_supplicant.conf’ (important!)
run ‘adb pull /data/misc/wifi/wpa_supplicant.conf .’
edit the file on your computer, adding the entry at the end of this post (keep the original copy as a backup). You should see your other WiFi networks registered here – don’t remove them.
run ‘adb push wpa_supplicant.conf /data/misc/wifi/wpa_supplicant.conf’
run ‘adb shell ls -l /data/misc/wifi’ again and make sure the file’s permission is okay (it’s probably now owned by root but as long as it is readable/writable by anyone, you’re good). If you’re wifi doesn’t work after this, check wpa_supplicant.conf permission.

IBM WiFi network entry

network={
ssid=”IBM”
scan_ssid=1
key_mgmt=WPA-EAP IEEE8021X
auth_alg=OPEN SHARED LEAP
eap=LEAP
identity=[your intranet id]
password=[your wifi password]
}
*Tested on the Nexus One, Nexus S and Motorola Xoom WiFi

来源:

http://www.bernie-eng.com/blog/2011/06/01/android-devices-on-ibm-network/

这也是一个如何在adb里pull/push 文件的方法说明.
同时也是一个IBM网络的conf文件的在android系统里的写法例子.

发表评论