[Raspberry Pi] 12. 라즈베리파이3 나스만들기 - Transmission ( Web Based Torrent Client ) 설치
Transmission
토렌트 클라이언트이다. GUI는 웹으로 제공되므로 웹으로 접속하여 토렌트 파일 올리면 알아서 다운받아 주는 기특한 녀석이다.
설치법
$ sudo apt-get install transmission-daemon |
설정하기
중요 설정에 대해서 설명한다.
$ sudo vi /etc/transmission-daemon/settings.json |
{ "alt-speed-down": 50, "alt-speed-enabled": false, "alt-speed-time-begin": 540, "alt-speed-time-day": 127, "alt-speed-time-enabled": false, "alt-speed-time-end": 1020, "alt-speed-up": 50, "bind-address-ipv4": "0.0.0.0", "bind-address-ipv6": "::", "blocklist-enabled": false, "blocklist-url": "http://www.example.com/blocklist", "cache-size-mb": 4, "dht-enabled": true, "download-dir": "/var/lib/transmission-daemon/downloads", "download-limit": 100, "download-limit-enabled": 0, "download-queue-enabled": true, "download-queue-size": 5, "encryption": 1, "idle-seeding-limit": 30, "idle-seeding-limit-enabled": false, "incomplete-dir": "/var/lib/transmission-daemon/Downloads", "incomplete-dir-enabled": false, "lpd-enabled": false, "max-peers-global": 200, "message-level": 1, "peer-congestion-algorithm": "", "peer-id-ttl-hours": 6, "peer-limit-global": 200, "peer-limit-per-torrent": 50, "peer-port": 51413, "peer-port-random-high": 65535, "peer-port-random-low": 49152, "peer-port-random-on-start": false, "peer-socket-tos": "default", "pex-enabled": true, "port-forwarding-enabled": false, "preallocation": 1, "prefetch-enabled": 1, "queue-stalled-enabled": true, "queue-stalled-minutes": 30, "ratio-limit": 2, "ratio-limit-enabled": false, "rename-partial-files": true, "rpc-authentication-required": true, "rpc-bind-address": "0.0.0.0", "rpc-enabled": true, "rpc-host-whitelist": "", "rpc-host-whitelist-enabled": true, "rpc-password": "{f7aa6992fd1f4c0be2c20a661329601ce4d83a0fzLVAJ6Rt", "rpc-port": 9091, "rpc-url": "/transmission/", "rpc-username": "transmission", "rpc-whitelist": "127.0.0.1", "rpc-whitelist-enabled": false, "scrape-paused-torrents-enabled": true, "script-torrent-done-enabled": false, "script-torrent-done-filename": "", "seed-queue-enabled": false, "seed-queue-size": 10, "speed-limit-down": 100, "speed-limit-down-enabled": false, "speed-limit-up": 100, "speed-limit-up-enabled": false, "start-added-torrents": true, "trash-original-torrent-files": false, "umask": 18, "upload-limit": 100, "upload-limit-enabled": 0, "upload-slots-per-torrent": 14, "utp-enabled": true }
|
옵션 | 설명 | 값 |
"download-dir" | 다운로드 된 파일이 저장될 폴더 경로이다. | 경로 |
"incomplete-dir" | 다운로드 중인 파일을 임시로 보관할 폴더 경로이다. | 경로 |
"incomplete-dir-enabled" | 다운로드 중인 파일을 임시로 보관할 것인지 선택 | true, false |
"watch-dir-enabled" | 지정된 경로에 토렌트 파일을 넣으면 자동으로 감지하여 다운로드 해주는 기능을 사용할 지 설정 | true, false |
"watch-dir" | 토렌트 파일을 감지할 폴더 경로이다. watch-dir-enabled 옵션이 true 일 때 동작한다. | 경로 |
"rpc-password" | 웹 클라이언트 접속시 사용 할 패스워드이다. | 문자열 |
"rpc-port" | 웹 클라이언트에서 사용하는 포트이다. | 숫자 |
"rpc-username" | 웹 클라이언트 접속시 사용 할 아이디이다. | 문자열 |
"rpc-whitelist-enabled" | 웹 클라이언트 접속시 화이트리스트(목록에 있는 호스트만 허용)를 사용할 것인지 선택 (false 이면 모든 원격 호스트를 허용한다.) | true, false |
"rpc-whitelist" | 웹 클라이언트 접속 가능한 호스트 목록이다. |
|
설정예
{ "download-dir": "/mnt/data", "rpc-password": "pass", "rpc-port": 9091, "rpc-username": "torrent", "rpc-whitelist-enabled": false, } |
웹 클라이언트 접속하기
http://아이피:9091 로 접속하면 된다.