wifi不稳定 ubuntu 17

wifi不稳定 ubuntu 17

wifi 连接但无法登录,然后断开连接?尝试过:

sudo systemctl restart networkmanager.service    no good
sudo nano service dnsmasq stop, sudo nano service network-manager restart    

没有

sudo nano /etc/systemd/resolved.conf
#DNSSEC=allow=downgrade     to
DNSSEC=off   and the ^X will not save the change
settings/network/wired/options  

并关闭 enp4s0 选项。编辑连接8.8.8.8,8.8.4.4 没有帮助。或者请告诉我在哪里可以找到我正在寻找的答案。

尝试了几次网络管理器重新启动,仍然没有用。

我运行双启动的 Ubuntu 17.o4 和 Windows 10,对 Ubuntu 和 Wi-Fi 很陌生,很多人给出的答案我都不知道它们的作用或含义,所以我逐字逐句地输入,但有些输入错了地方。(我的错,还不了解这个系统)。

答案1

运行以下命令获取你的 wifi 驱动程序的名称

lspci | grep Wireless 

然后在线搜索驱动程序并安装它们。由于您没有提供驱动程序名称,我无法提供进一步的帮助。但是,要构建驱动程序(如果需要),您可以执行以下操作:

cd (folder that contains the drivers)
make
sudo make install
reboot

那么你的 WiFi 应该会更稳定。

答案2

sudo -H gedit /etc/NetworkManager/NetworkManager.conf

将以下行添加到该文件

[device]

wifi.scan-rand-mac-address=no

要保存更改,请按Ctrl X

sudo service network-manager restart

这应该适合你的情况

相关内容