NewGen

블루투스 마우스 연결문제 본문

LINUX

블루투스 마우스 연결문제

Deep Learning 2019. 2. 17. 14:38

블루투스 마우스 연결문제



블루투스 마우스를 사용하다가,

한동안 놓아두면, 슬립모드 혹은 절전 모드로 진입하게 됩니다.


요때 , 리눅스에서

다시 연결이 잘 안되는 부분이 있더라고요.


모든 배포판 리눅스가 그런건 아니에요.


우분투 16.04 사용중인데요.


그냥 이래저래 대처방법을 찾아서 써 봅니다.


1. after resuming, I tried stopping and restarting bluetooth via rmmod btusb/modprobe usb and sudo /etc/init.d/bluetooth stop and /etc/init.d/bluetooth stop/start

2. adding a script 10_bluetooth to /etc/pm/sleep.d/ with contents


#!/bin/bash

. /usr/lib/pm-utils/functions

case "$1" in

  hibernate|suspend)

  rfkill block bluetooth

  ;;

  thaw|resume)

  rfkill unblock bluetooth

  ;;

  *)

  ;;

esac

exit


그럼 즐거운 리눅스 생활 되셔요


Comments