우분투 서버에서 토렌토,토렌트,torrent 돌리기.

2014/12/30 22:26

항상 GUI만 사용하다가 CLI 가 문뜩 새롭다.

잡담은 집어 치우고, 깔끔한 사용감 가겠다.

apt-get install transmission-daemon

vi /etc/transmission-daemon/settings.json


아래와 같이 핵심만 서술.

"download-dir": "/home/torrent",   << download-dir 를 찾아서 /home/torrent 로 바꾼다. 아래 쭉 마찬가지

"cache-size-mb": 128,

"incomplete-dir": "/home/torrent-downloads-mirror",

"incomplete-dir-enabled": true,

"rpc-bind-address": "0.0.0.0",

"rpc-enabled": true,

"rpc-password": "비밀번호 적고..",

"rpc-username": "torrent",

"rpc-whitelist-enabled": false,

"umask": 0,



그리고

mkdir /home/torrent/

mkdir /home/torrent-downloads-mirror/

chown debian-transmission.debian-transmission /home/torrent/ -R

chown debian-transmission.debian-transmission /home/torrent-downloads-mirror/ -R

chown debian-transmission.debian-transmission /etc/transmission-daemon/settings

그리고

chmod 774 /home/torrent/

chmod 774 /home/torrent-downloads-mirror/


그리고


service transmission-daemon restart



끝!.