为什么我必须重新启动才能连接到 Wi-Fi?

为什么我必须重新启动才能连接到 Wi-Fi?

我在笔记本电脑上运行 Ubuntu 16.04,几乎每次打开它时都无法连接到 wifi。顶部菜单中的无线图标存在,但当我单击它时没有可用的无线网络。我必须重新启动计算机,然后它才能正常工作(自动连接到 wifi 网络)。

为什么我必须重启?有没有办法无需重启即可自动连接?

每次我挂起计算机时都会出现此问题。当我从待机状态登录时,我无法再连接互联网,到目前为止我发现的唯一解决方案是重新启动...

lspci以下是(我现在已经连接)的输出

00:00.0 Host bridge: Intel Corporation Sky Lake Host Bridge/DRAM Registers (rev 07)
00:01.0 PCI bridge: Intel Corporation Sky Lake PCIe Controller (x16) (rev 07)
00:02.0 VGA compatible controller: Intel Corporation Skylake Integrated Graphics (rev 06)
00:04.0 Signal processing controller: Intel Corporation Skylake Processor Thermal Subsystem (rev 07)
00:14.0 USB controller: Intel Corporation Sunrise Point-H USB 3.0 xHCI Controller (rev 31)
00:14.2 Signal processing controller: Intel Corporation Sunrise Point-H Thermal subsystem (rev 31)
00:16.0 Communication controller: Intel Corporation Sunrise Point-H CSME HECI #1 (rev 31)
00:17.0 SATA controller: Intel Corporation Sunrise Point-H SATA Controller [AHCI mode] (rev 31)
00:1c.0 PCI bridge: Intel Corporation Sunrise Point-H PCI Express Root Port #5 (rev f1)
00:1c.5 PCI bridge: Intel Corporation Sunrise Point-H PCI Express Root Port #6 (rev f1)
00:1c.6 PCI bridge: Intel Corporation Sunrise Point-H PCI Express Root Port #7 (rev f1)
00:1f.0 ISA bridge: Intel Corporation Sunrise Point-H LPC Controller (rev 31)
00:1f.2 Memory controller: Intel Corporation Sunrise Point-H PMC (rev 31)
00:1f.3 Audio device: Intel Corporation Sunrise Point-H HD Audio (rev 31)
00:1f.4 SMBus: Intel Corporation Sunrise Point-H SMBus (rev 31)
01:00.0 3D controller: NVIDIA Corporation GM107M [GeForce GTX 960M] (rev a2)
07:00.0 Unassigned class [ff00]: Realtek Semiconductor Co., Ltd. RTS522A PCI Express Card Reader (rev 01)
08:00.0 Network controller: Intel Corporation Wireless 7265 (rev 61)
09:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller (rev 15)

当我没有连接时(待机后)这里是一些命令的输出:

输出lsmod | grep iwl

iwlmvm                311296  0
mac80211              737280  1 iwlmvm
iwlwifi               200704  1 iwlmvm
cfg80211              565248  3 iwlwifi,mac80211,iwlmvm

输出rfkill list all

1: phy0: Wireless LAN
    Soft blocked: no
    Hard blocked: no
2: hci0: Bluetooth
    Soft blocked: yes
    Hard blocked: no

答案1

我找到了问题(或至少是问题的一部分)。我连接到的 vpn(使用 openvpn)似乎无法正常工作。当我停止 vpn 连接(sudo service openvpn stop)时,一切又恢复正常。

我还在服务器上重新启动了我的 vpn 服务,并在我的计算机上取消了该行AUTOSTART="none"的注释。/etc/default/openvpn

不过我还是不知道为什么我的电脑在暂停后可以连接到 vpn,但重启后却不能...

答案2

尝试在你的终端中执行此操作

sudo service network-manager restart 

看看是否适合你。

相关内容