ubuntu 14.04搭建wifi分享熱點總結

田園詩人之園發表於2015-11-30

首先你要下載一個hotspot軟體,通過網上制定的地址通常會提示你無法找到該地址,現在我說一下我再搭建改環境的時候的解決方法以及如何搭建成功;
ubuntu14.04安裝配置無線ap

1、新增含有ap-hotspot的資源
whw@Y485:sudo add-apt-repository ppa:nilarimogard/webupd8
2、更新資源
whw@Y485:sudo apt-get update
此時可能會提示你執行"sudo dpkg --configure -a"命令,你只需要按照它的指示去安裝就可以。
3、之前如果安裝了ap-hotsopt或者hostapd的你需要首先將其解除安裝
whw@Y485:sudo apt-get remove hostapd
4、安裝沒有bug的hostapd版本
我的系統是64位,網上很多前輩也介紹了該方法,大家可以借鑑一下,在此向前輩們的付出表示崇高的敬意:
whw@Y485:cd /tmp
whw@Y485:wget *http://archive.ubuntu.com/ubuntu/pool
/universe/w/wpa/hostapd_1.0-3ubuntu2.1_amd64.deb*
極有可能你執行該條命令最後提示你無法連結到該連結,你可以去
http://old-releases.ubuntu.com/ubuntu/pool/universe/w/wpa/hostapd_1.0-3ubuntu2.1_amd64.deb去下載*hostapd_1.0-3ubuntu2.1_amd64.deb*
這個比較古老但非常實用的hotspot檔案。
whw@Y485:sudo dpkg -i hostapd*.deb
whw@Y485:sudo apt-mark hold hostapd
 5、 安裝ap-hotspot
whw@Y485:sudo apt-get install  ap-hotspot
 6、配置 網路  ap的名字與密碼
 whw@Y485:sudo ap-hotspot configure
 whw@Y485:/tmp$ sudo ap-hotspot configure 
Detecting configuration...
Detected ppp0 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.):
ppp0是我的撥號寬頻,直接enter
Detected wlan0 as your WiFi interface. Press ENTER if 
this is correct or enter the desired interface (e.g.- 
wlan1):
wlan0是我的無線網路卡用來做ap的裝置,直接enter
Enter the desired Access Point name or press ENTER to 
use the default one (myhotspot):
該處是輸入你分享出去的wifi熱點的名稱:
myhotspot
Enter the desired WPA Passphrase below or press ENTER 
to use the default one (qwerty0987):
該處是設定你分享出去的wifi熱點的密碼:
qwer1234
whw@Y485:/tmp$ 
 7、關閉ubuntu的防火牆(如果你啟用了)
whw@Y485:sudo ufw disable
 8 、啟動無線服務(安裝好後最好重新啟動作業系統)
whw@Y485:sudo ap-hotspot start 
  (關閉無線:sudo ap-hotspot stop)
  當終端顯示如下時,恭喜你,你的環境已經大獲成功
  whw@Y485:/tmp$ sudo ufw disable 
Firewall stopped and disabled on system startup
whw@Y485:/tmp$ sudo ap-hotspot start
Please disconnect WiFi before proceeding
whw@Y485:/tmp$ sudo ap-hotspot start
Starting Wireless Hotspot...
Wireless Hotspot active
whw@Y485:/tmp$ 

相關文章