一時停止からの再開時にWi-Fi接続が切断されることがあるというバグの影響を受けます。問題は次のように現れます。
スクリーンショット:
システムを再起動することなく、wifi接続をリセットするためにコマンドラインから実行できるコマンドは何ですか?
ターミナルを開いて以下を実行してください:
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
慎重に2回校正し、テキストエディターを保存して閉じます。今やる:
Sudo chmod +x /etc/systemd/system/wifi-resume.service
そして次に:
Sudo systemctl enable wifi-resume.service
再起動して、問題が解決したかどうかをお知らせください。
コマンドは
Sudo service network-manager restart
あなたが試すことができます
Sudo /etc/init.d/network-manager restart
dhclient wlan0