Quote:
Originally Posted by fartlec
yeah, that's great. but what if i use ubuntu and my wireless card is not supported by hostapd? haven't found a working wpa_supplicant for my ics-sed galaxy s yet, so i'll stick to gb for the time being.. 
|
I am not big fan of UBUNTU but found this. Give it a try and say if it works.
In Ubuntu 10.04, it seems extremely easy to have this hostapd work. First, of course, you need to install it. It is already in the official repositories. Just run this in the terminal:
sudo apt-get install hostapd
Then, open a text editor program, for example gedit. Copy the following into it.
interface=wlan0
driver=nl80211
ssid=
channel=1
hw_mode=g
auth_algs=1
wpa=3
wpa_passphrase=
wpa_key_mgmt=WPA-PSK
wpa_pairwise=TKIP CCMP
rsn_pairwise=CCMP
Please don’t forget to fill in the name of your network after “ssid=”, as well as the password after “wpa_passphrase=”.
After all these, save the file as hostapd.conf in your home folder.
Now, in your terminal:
sudo hostapd hostapd.conf
Turn the wifi connection on in your devices and enjoy the fast network share!
|