2013년 10월 12일 토요일

mythtv 절전 supend to RAM

Debian (Wheezy)에서, 절전후 복구하면 mythtv backend가 작동하지 않아
다음과 같이 하였습니다.
TV카드는 디비코 FusionHDTV5 RT Silver 입니다.

먼저 01_mythtv-sleep 라는 임의의 파일을 만든 후,
# nano /etc/pm/sleep.d/01_mythtv-sleep

아래아 같이 입력 하고,
#!/bin/sh

case "$1" in
suspend)
/etc/init.d/mythtv-backend stop
sleep 1
modprobe -r cx88_dvb
sleep 1
;;
resume)
modprobe cx88_dvb
sleep 1
/etc/init.d/mythtv-backend start
sleep 1
;;
esac

이 파일을 실행 가능하게 하였습니다.
# chmod a+x /etc/pm/sleep.d/01_mythtv-sleep