Jay Saint says to Ubuntu 台灣社群18.04 上bluez有個bug在某些情況會讓suspend失敗 bug: https://bugs.launchpad.net/ubuntu/+source/bluez/+bug/1823076 手法: 開藍牙且配對好滑鼠但斷開時,suspend之後會立刻醒來 解法: cd /lib/systemd/system-sleep sudo nano suspend-bt.sh sh #!bin/bash if [ "${1}" == "pre" ]; then systemctl stop bluetooth elif [ "${1}" == "post" ]; then systemctl start bluetooth fi sudo chmod 755 suspend-bt.shat Fri, Sep 6, 2019 8:14 PM