728x90
설치 확인
$ dpkg -l | grep transmission ii transmission-common 2.82-1.1ubuntu3.1 all lightweight BitTorrent client (common files) ii transmission-gtk 2.82-1.1ubuntu3.1 amd64 lightweight BitTorrent client (GTK+ interface)
설치
$ sudo apt-get install transmission-daemon
환경 설정 (/etc/transmission-daemon/settings.json)
mycom - sudo vi /etc/transmission-daemon/settings.json
서비스가 종료된 경우만 수정 가능
IP filter 설정
"blocklist-enabled": true, "blocklist-url": "http://list.iblocklist.com/?list=bt_level1&fileformat=p2p&archiveformat=gz"
외부 웹 접속 설정
"rpc-authentication-required": true, "rpc-url": "/transmission/", "rpc-username": "admin", "rpc-enabled": true, "rpc-password": "admin12", "rpc-port": 9091, "rpc-whitelist": "127.0.0.1", "rpc-whitelist-enabled": false,
최대 다운로드, 최대 업로드 관련 설정
"speed-limit-down-enabled": true 일 경우에만 speed-limit-down 가 적용
"speed-limit-up-enabled": true 일 경우에만 speed-limit-up 가 적용
"speed-limit-down": 100, "speed-limit-down-enabled": false, "speed-limit-up": 100, "speed-limit-up-enabled": false,
다운로드 경로 설정
"download-dir": "/bluesanta/torrent/torrent.download", "incomplete-dir": "/bluesanta/torrent/torrent.temp", "incomplete-dir-enabled": true,
자동 불러오기
"trash-original-torrent-files": true, "watch-dir": "/bluesanta/torrent/torrent.auto", "watch-dir-enabled": true
서비스 시작
$ sudo service transmission-daemon start transmission-daemon start/running, process 6479
서비스 종료
$ sudo service transmission-daemon stop transmission-daemon stop/waiting
728x90