Ubuntu
Ubuntu 20.04 lts wifi-hotspot 不工作
我的電腦上有一個 TP-Link T6e 卡,從 ubuntu 軟體和更新中的附加驅動程序選項卡安裝驅動程序後它工作正常,這意味著我可以連接到 wifi。但是,當我嘗試使用 ubuntu wifi 設置中的選項創建熱點時,它不起作用。它的作用是創建一個臨時連接而不是熱點連接。我嘗試使用以下方法對其進行編輯:
sudo gedit /etc/NetworkManager/system-connections/wifi-connection
但是如果我關閉並重新打開熱點,它會再次成為臨時的。
關於如何解決這個令人沮喪的問題的任何建議?
先感謝您
檢查你的wifi卡是否支持AP模式:
sudo iw list |grep -i "Supported interface modes:" -A10
它應該列印:
... * AP ...
使用
create_ap
工具創建 AP(參見:linux-wifi-hotspot):git clone https://github.com/oblique/create_ap cd create_ap sudo make install
create_ap wlan0 wlan0 MyAccessPoint MyPassPhrase
或者如果您需要通過 Wifi 介面進行乙太網連接:
create_ap wlan0 eth0 MyAccessPoint MyPassPhrase