시놀로지의 다운로드 스테이션 많이 사용하실 텐데 한가지 아쉬운 점이 토렌트 검색 기능을 사용 했을 때 국내 자료가 많이 부족하다는 것 입니다. 이 때문에 시놀로지에서 다운로드 스테이션에 검색사이트를 추가 할 수 있는 기능을 제공하는데 이는 DLM이라는 확장자를 가진 파일로 배포 됩니다. 임의로 사이트 한 곳을 선정하여 국내영화, 외국영화, 예능, 시사, 드라마 DLM을 만들었습니다. tosarang_dlm 받으시고 아래의 방법을 […]
태그: torrent
Transmission 다운로드 완료 알림을 스마트폰으로 받는 방법
NAS나 홈서버에서 토렌트 클라이언트로 Transmission을 많이 사용하는데 Pushbullet을 이용하여서 다운로드 완료 알림을 스마트폰(안드로이드, 아이폰)이나 크롬 등에서 받아 볼 수 있습니다. 작업환경은 우분투 14.04 입니다. 첫째, Pushbullet 가입 후 Account Settings에서 Access Token을 기록하여 둡니다. 둘째, Shell Script를 작성하여 줍니다.
1 | vi ~/transmission-notification.sh |
1 2 3 4 5 6 7 8 9 10 11 12 | #!/bin/bash # pushbullet access token token="[첫째 과정에서 얻은 ACCESS TOKEN]" # push transmission notification to a pushbullet pushNotification() { curl -u $token: https://api.pushbullet.com/v2/pushes -d type=note -d title="Transmission" -d body="$TR_TORRENT_NAME download completed ($TR_TIME_LOCALTIME)" --insecure } # call function pushNotification |
1 | chmod a+x ~/transmission-notification.sh |
셋째, Transmission 설정을 변경하여 줍니다.
1 2 | sudo service transmission-daemon stop sudo vi /etc/transmission-daemon/settings.json |
1 2 | "script-torrent-done-enabled": true, "script-torrent-done-filename": "/home/[USER_NAME]/transmission-notification.sh", |
1 | sudo service transmission-daemon start |
참조: http://geserkhan.blogspot.kr/2014/08/transmission.html