2021-05-12 14:32:11
Ubuntu 14.04建立可以用於Android的WIFI熱點
Ubuntu的網路管理為建立Wifi熱點提供了方便,可是因為它用了ad-hoc網路,所以其建立的Wifi又不能讓Android系統使用。這篇文字就是為了解決這個問題
1.Install AP-Hostpot in Ubuntu
sudo add-apt-repository ppa:nilarimogard/webupd8
sudo apt-get update
sudo apt-get install ap-hotspot
2.Updata for ubuntu 14.04
the hostapd version in Ubuntu 14.04 is buggy and doesn't work properly. To get AP-Hotspot to work with hostapd in Ubuntu 14.04, you need to downgrade hostapd and use apt to hold the package so it's not upgraded(hostapd再14.04上有很多bug,所以要想完美執行就得對hostapd降級…)
64-bit:
cd /tmp
wget http://archive.ubuntu.com/ubuntu/pool/universe/w/wpa/hostapd_1.0-3ubuntu2.1_amd64.deb
sudo dpkg -i hostapd*.deb
sudo apt-mark hold hostapd
32-bit:
cd /tmp
wget http://archive.ubuntu.com/ubuntu/pool/universe/w/wpa/hostapd_1.0-3ubuntu2.1_i386.deb
sudo dpkg -i hostapd*.deb
sudo apt-mark hold hostapd
3.Usage
To start AP-Hotspot, use the following command:
sudo ap-hotspot start
依照提示輸入a.有線網絡卡b.無線網絡卡c.wifi名稱d.密碼
網絡卡屬性可以用命令
ifconfig
來查詢,一般有線網絡卡Ubuntu上為eth0
如果輸入錯誤可以用如下指令來修改:
sudo ap-hotspot configure
重新啟動指令和結束指令:
#重新啟動
sudo ap-hotspot restart
#結束
sudo ap-hotspot stop
如果無法啟動,關閉防火牆試試:
sudo ufw disable
Ubuntu 下建立WiFi熱點的方法 http://www.linuxidc.com/Linux/2014-07/104624.htm
相關文章