Bluetoothがアクティブな間、サスペンド/スリープできません。 syslogにエラーメッセージはありません。
ただし、rfkill block bluetooth
の後は、正常にスリープ/サスペンドできます。
私はBluetoothマウスを使用しているため、Bluetoothを完全に無効にすることはできません。
Bluetooth機能を使用しながら、どのようにしてスリープ/サスペンドできますか?
カーネル Bug 200039-BTアドバタイジングパケットがシステムをS3からウェイクアップし、suspend-to-idle 。
これはIntel(8087:0aaa
)とAtheros(0cf3:e005
)(0cf3:e007
) ブルートゥース:
回避策は、スリープ/サスペンドの前にBluetooth USBデバイスの認証を自動的に解除し、スリープ解除時に再認証することです。
systemd
の回避策は、以下を使用することです。
/etc/systemd/system/bluetooth-disable-before-sleep.service
(CHANGE MEの行に注意してください):
[Unit]
Description=disable bluetooth for systemd sleep/suspend targets
Before=sleep.target
Before=suspend.target
Before=hybrid-sleep.target
Before=suspend-then-hibernate.target
StopWhenUnneeded=yes
[Service]
Type=oneshot
RemainAfterExit=yes
# Usage: bluetooth-sleep (start|stop) <vendor> <product>
# Get values from `lsusb`:
# eg: Bus 001 Device 003: ID 8087:0aaa Intel Corp.
# Usage: bluetooth-sleep (start|stop) 8087 0aaa
ExecStart=/usr/local/bin/bluetooth-sleep start 8087 0aaa ### CHANGE ME ###
ExecStop=/usr/local/bin/bluetooth-sleep stop 8087 0aaa ### CHANGE ME ###
[Install]
WantedBy=sleep.target
WantedBy=suspend.target
WantedBy=hybrid-sleep.target
WantedBy=suspend-then-hibernate.target
/usr/local/bin/bluetooth-sleep
:
#!/bin/bash
# Disable bluetooth given first argument "start"
# Re-enable bluetooth given first argument "stop"
# Expects vendor and product as 2nd and 3rd arguments
set -eu
usage() {
script_name=${0##*/}
printf '%s: de-authorise bluetooth during sleep/suspend\n' "$script_name" >&2
printf 'Usage: %s (start|stop) <vendor> <product>\n' "$script_name" >&2
exit 1
}
case "${1:-}" in
start) value=0 ;;
stop) value=1 ;;
*) usage ;;
esac
[ $# -ne 3 ] && usage
vendor=$2
product=$3
shopt -s nullglob
for dir in /sys/bus/usb/devices/*; do
if [[ -L "$dir" && -f $dir/idVendor && -f $dir/idProduct &&
$(cat "$dir/idVendor") == "$vendor" &&
$(cat "$dir/idProduct") == "$product" ]]; then
echo "$value" > "$dir/authorized"
echo "echo $value > $dir/authorized"
fi
done
this post へのクレジット。