我在 Dell Vostro 5470 上运行 Xubuntu 14.04 LTS。启动笔记本电脑后,Wifi 会自动连接。主要问题是,在合上盖子后唤醒笔记本电脑时,默认情况下 Wifi 会关闭。我试过
sudo rfkill 列出全部
蓝牙和 wifi 均被软阻止。我希望 wifi 在唤醒笔记本电脑后自动重新连接,而无需使用 FN 键。
提前致谢
答案1
我建议你尝试:
gksudo gedit /usr/lib/pm-utils/sleep.d/99restartNM
如果您没有文本编辑器 gedit,请使用 nano 或 Kate 或 leafpad。
写入以下文件:
#!/bin/bash
case "$1" in
hibernate)
# put commands to run on hibernation here
;;
thaw)
# put commands to run when returning from hibernation here
;;
suspend)
# put commands to run on suspend here
;;
resume)
# put commands to run when returning from suspension
service network-manager restart
;;
esac
仔细校对,特别注意间距和标点符号;保存并关闭文本编辑器。重新启动并测试。