Linux Mint 18 上的网络接口无法正常工作 (RTL8821AE)

Linux Mint 18 上的网络接口无法正常工作 (RTL8821AE)

我购买了一台相当新的笔记本电脑,购买时安装了 Windows 10。在 Windows 上一切正常,但对 Windows 不满意,我决定安装 Linux Mint 18 (xfce)。

我的笔记本电脑上的 Mint 工作正常,但内置 WiFi 适配器除外。我尝试了很多方法来修复它,但没有成功。

适配器已连接至 wifi,几分钟后工作正常。此后,适配器将无法再找到 DNS。 Pinging 停止工作,我基本上没有互联网。

最近,我发现可以通过使用以下方法(暂时)解决该问题:

~ $ sudo ifdown wlp2s0 && sudo ifup wlp2s0

该命令给出了这个错误:

Unkown interface wlp2s0

之后,适配器可以正常工作几分钟。在我看来,我应该手动配置网络接口。所以我将以下内容添加到 /etc/network/interfaces 文件中:

auto wlp2s0
iface wlp2s0 inet static
address <IP here>
netmask 255.255.255.0
gateway <IP here>
dns-nameservers 8.8.8.8

现在我收到这些错误:

ifdown: interface wlp2s0 not configured
RTNETLINK answers: File exists
Failed to bring up wlp2s0.

同样,适配器可以正常工作几分钟。但是当我重新启动笔记本电脑时,适配器不再被识别。

有什么办法可以永久解决这个问题吗?

笔记本电脑:东芝 Sattelite C55D-C 网络适配器:RTL8821AE

答案1

dnsmasqMint 18 和 18.1有问题

只需编辑/etc/NetworkManager/NetworkManager.conf 并更改dns=dnsmasq#dns=dnsmasq.

就这么简单:p

相关内容