嘿,我的 wifi 一直提示输入 WPA2 密码。我需要用网络管理器做些什么吗?
Linux version 3.5.0-17-generic (buildd@roseapple) (gcc version 4.7.2 (Ubuntu/Linaro 4.7.2-2ubuntu1) )
Distributor ID: Ubuntu
Description: Ubuntu 12.10
Release: 12.10
Codename: quantal
Network controller: Atheros Communications Inc. AR9285 Wireless Network Adapter (PCI-Express) (rev 01)
答案1
下面的事情解决了我的问题
sudo vim /etc/NetworkManager/system-connections/ConnectionName
set this : password-flags=0
下次这将存储您的密码。
答案2
答案3
这通常可以解决您的设备问题,它将加密从硬件更改为软件。
一次运行一行命令,只需复制并粘贴以确保准确性。
echo "options ath9k nohwcrypt=1" | sudo tee /etc/modprobe.d/ath9k.conf
sudo modprobe -rfv ath9k
sudo modprobe -v ath9k
谢谢
答案4
您需要明确调用 dhclient 并让它为您的 wifi 分配一个 IP。
sudo dhclient wlan0。
这适用于 Ubuntu 14.04。