我正在使用 Ubuntu 20.04 LTS
我使用以下命令连接到以太网来安装网络管理器
sudo apt-get install network-manager
一切顺利,没有错误。然后我启动网络管理器
service network-manager start
最后我用以下命令连接我的 Wifi
nmcli d wifi connect <Wifi Name> Password <Password>
当我执行此操作时,出现以下错误:
Error: Connection activation failed: (5) IP configuration could not be reserved (no available address, timeout, etc.).
我发现另一个线程建议使用命令journalctl -f
查看错误日志。这里看起来没什么奇怪的,也没有任何地方说有东西丢失或损坏。
lspci -nnk | grep 0280 -A3
返回
02:00.0 Network controller [0280]: Ralink corp. RT5390 Wireless 802.11n 1T/1R PCIe [1814:5390]
Subsystem: Foxconn International, Inc. RT5390 Wireless 802.11n 1T/1R PCIe [105b:e088]
Kernel driver in use: rt2800pci
Kernel modules: rt2800pci
nmcli dev status
返回
(Device)wlp2s0 (Type)wifi (State)disconnected (Connection)--
以太网和环回设备不受管理
这是怎么回事?有人知道我该如何解决这个问题吗?或者至少知道我该如何连接到我的 Wifi 吗?