Ubuntu14.04 创建 wifi 热点

第一步:安装 ap-hotspot

$ sudo add-apt-repository ppa:nilarimogard/webupd8
$ sudo apt-get update
$ sudo apt-get install hostapd
$ sudo apt-get install ap-hotspot

第二步:配置 ap-hotspot

Detecting configuration...
Detected eth0 as the network interface connected to the Internet. Press
ENTER if this is correct or enter the desired interface below (e.g.- eth0,
ppp0 etc.):
// 回车确认
Detected wlan0 as your WiFi interface. Press ENTER if this is correct or
enter the desired interface (e.g.- wlan1):
// 回车确认
Enter the desired Access Point name or press ENTER to use the default
one (myhotspot):
// 输入 wifi 的名字
Enter the desired WPA Passphrase below or press ENTER to use the
default one (qwerty0987):
// 输入 wifi 的密码

第三步:启动 wifi

$ sudo ap-hotspot start

第四步:杀死进程,卸载hostapd


在 ubuntu 14.04 下,按照上面方法之后,执行 sudo ap-hotspot start 之后,
一直卡在 Starting Wireless Hotspot... 这里不动了
杀死进程,并执行命令 sudo rm /tmp/hotspot.pid 删除临时文件第四步:卸载 hostapd
$sudo apt-get remove hostapd

第五步:重新安装 hostapd 并保持当前版本不更新

注意  hostapd_1.0-3ubuntu2.1_amd64.deb的位置已经变了,在网上很多人所说的Ubuntu官方原网址已经找不到资源了,这里是通过google搜索得到的,百度搜索得到全是老黄历


$cd /tmp
$wget
http://ftp.ksu.edu.tw/FTP/Linux/ubuntu/pool/univer
se/w/wpa/hostapd_1.0-3ubuntu2.1_amd64.deb
sudo dpkg -i hostapd*.deb
sudo apt-mark hold hostapd

第六步:重新安装 ap-hotspot

$ sudo apt-get install ap-hotspot

第七步:启动 wifi 热点

$ sudo ap-hotspot start

猜你喜欢

转载自blog.csdn.net/u012751110/article/details/51330859
今日推荐