View Single Post
Posts: 36 | Thanked: 14 times | Joined on Mar 2010 @ Slovakia
#18
for those who does not want to install apps for enabling adhoc mode for touchpad and has terminal application installed (wTerm) can use theese scripts:

To start adhoc mode:

Code:
#!/bin/sh
# startadhoc
/sbin/stop PmWiFiService
modprobe ar6000
ifconfig eth0 up
iwconfig eth0 mode ad-hoc essid "name of your network" power off
dhclient eth0
echo "nameserver 8.8.8.8" >> /etc/resolv.conf

To stop adhoc mode:

Code:
#!/bin/sh
# stopadhoc restore default resolv.com
echo "nameserver 127.0.0.1" > /etc/resolv.conf
/sbin/start PmWiFiService
This is not my script, I found it on some webos forum.
This has been said before but I will repete... ONLY BROWSER WILL WORK. No other apps can recognize this connection.