我遇到了一个奇怪的问题:当我连接到 Wifi 时(我尝试了多个不同的无线网络,其他设备都可以正常使用),我的笔记本电脑根本无法浏览。Ping 和 dig 只会显示未知主机问题。重启后问题仍然存在,即使防火墙被禁用,问题似乎仍然存在。我能补充的唯一信息是,我的无线设备现在称自己为 wls1 - 虽然我不能 100% 确定它以前是 wlan0,但我很确定它是。
另一个奇怪的谜团是,我的电脑能连接到 VPN,然后通过该 VPN,互联网就可以正常工作。我找不到遇到此类问题的人,所以我真的不知道该怎么办。我不想被 VPN 束缚着浏览网页,尤其是强制门户现在会损坏我的设备。
答案1
尝试https://askubuntu.com/a/892739/664380
第一的 (https://askubuntu.com/a/164351/664380)
$ sudo mv /etc/resolv.conf /etc/backup.resolv.conf
然后,运行(https://askubuntu.com/a/835198/664380)
$ ifconfig
并查看网络适配器的名称。我的是:enp0s31f6
现在运行这个命令
$ sudo nano /etc/network/interfaces
你应该在里面得到一些东西....删除所有内容并粘贴这个(但更改 enp0s31f6 所在的网络适配器名称):
# 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/*
# interfaces(5) file used by ifup(8) and ifdown(8)
auto lo
iface lo inet loopback
# The primary network interface
auto enp0s31f6
iface enp0s31f6 inet dhcp
保存文档并重新启动...