Ubuntu14.04建立WIF热点供手机和平板上网

系统环境:

Ubuntu 14.04 LTS  32bit

在ubuntu系统中,以太网实现联网的前提下,实现共享网络。

查找资料,发现一般有network Manager 和ap-hotspot 两种方法,但是只有后一种可以提供给手机共享。

网上的方法存在过时和不全面的问题,下面总结一下亲测可用的配置流程:

1、在当前用户下,建立一个tmp文件夹:

mkdir tmp

2、下载hostapd_1.0-3ubuntu2.1_i386.deb

注意:目前hostapd最新版到了2.0,但是现在只有1.0版本亲测可用。而且hostapd官网把1.0版本下架了。

这里使用其他途径下载。

~/tmp$ wget http://ftp.ksu.edu.tw/FTP/Linux/ubuntu/pool/universe/w/wpa/hostapd_1.0-3ubuntu2.1_i386.deb


3、安装 hostapd 和 ap-hotspot

~/tmp$ sudo dpkg -i hostapd_1.0-3ubuntu2.1_i386.deb
~/tmp$ sudo apt-mark hold hostapd

#sudo apt-mark hold hostapd是为了防止版本升级。之后也要注意不要点击ubuntu系统的自动升级提示。

~/tmp$ sudo add-apt-repository ppa:nilarimogard/webupd8

 
  

~/tmp$ sudo apt-get update
~/tmp$ sudo apt-get install ap-hotspot

4、配置ap-hotspot

~/tmp$ sudo ap-hotspot configure
回车确认之后,按照提示输入热点名称和密码即可。


5、运行ap-hotspot

~/tmp$ sudo ap-hotspot start

PS: 如果终端出现如下问题:

Another process is already running

解决方案:

~/tmp$ sudo rm /tmp/hotspot.pid

运行成功,终端显示如下:

Starting Wireless Hotspot...
Wireless Hotspot active

到这里就完成了配置,桌面右上角会出现提示,用手机连接应该就可以上网了。


参考文章:

http://www.cnblogs.com/csulennon/p/4418734.html

http://blog.csdn.net/wdjhzw/article/details/39118651

http://blog.csdn.net/wdjhzw/article/details/40377589

http://askubuntu.com/questions/180733/how-to-setup-an-access-point-mode-wi-fi-hotspot


你可能感兴趣的:(Linux)