网络管理器找不到无线网络

网络管理器找不到无线网络

我正在使用 Debian 9 Stretch,我提供了我的 wifi ssid 并传递了安装过程,它可以工作,但 NetworkManager 无法正常工作,无法找到另一个 wifi。

这是我的/etc/NetworkManager/NetworkManager.conf文件。

[main]
plugins=ifupdown,keyfile

[ifupdown]
managed=true

还有这个,我的/etc/network/interfaces文件。

# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).

source /etc/network/interfaces.d/*

# The loopback network interface
auto lo
iface lo inet loopback

# The primary network interface
allow-hotplug wlp1s0
#if something dies delete this line
#auto wlp1s0 
iface wlp1s0 inet dhcp
    wpa-ssid .XT1040
    wpa-psk  ********

这是我的/etc/wpa_supplicant.conf文件。

ctrl_interface=DIR=/run/wpa_supplicant GROUP=wheel
update_config=1

答案1

我终于找到了解决方案

allow-hotplug wlp1s0

是相同于

auto wlp1s0

所以,我只是评论了它及其工作!

相关内容