重置 wifi 连接的可能命令有哪些?

重置 wifi 连接的可能命令有哪些?

我遇到了一个 bug,在从挂起状态恢复时,WiFi 连接偶尔会断开。问题表现如下:

截屏:

在此处输入图片描述

我可以尝试从命令行运行哪些命令来重置我的 wifi 连接,而无需重新启动系统?

答案1

请打开终端并执行:

sudo gedit  /etc/systemd/system/wifi-resume.service

如果您没有文本编辑器 gedit,请使用 nano 或 kate 或 leafpad。将打开一个新的空文件。添加以下内容:

[Unit]
Description=Local system resume actions
After=suspend.target

[Service]
Type=oneshot
ExecStart=/bin/systemctl restart network-manager.service

[Install]
WantedBy=suspend.target

仔细校对两遍,保存并关闭文本编辑器。现在执行以下操作:

sudo chmod +x  /etc/systemd/system/wifi-resume.service

接下来:

sudo systemctl enable wifi-resume.service

重新启动并让我们知道问题是否解决。

答案2

命令是

sudo service network-manager restart

答案3

你可以试试

sudo /etc/init.d/network-manager restart
dhclient wlan0

相关内容