Advertisement
parkerlreed

Untitled

Feb 16th, 2014
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.84 KB | None | 0 0
  1. sudo apt-get install transmission-daemon
  2.  
  3. sudo service transmission-daemon stop
  4.  
  5. sudo nano /etc/init.d/transmission-daemon
  6.  
  7. Edit the USER line to match your user
  8.  
  9. USER=youruser
  10.  
  11. Save
  12.  
  13. sudo chown -R youruser:youruser /etc/transmission-daemon/
  14.  
  15. sudo chown -R youruser:youruser /var/lib/transmission-daemon/
  16.  
  17. sudo chown -R youruser:youruser /usr/share/transmission/
  18.  
  19. nano /etc/transmission-daemon/settings.json
  20.  
  21. Edit these lines accordingly:
  22.  
  23. "download-dir": "/mnt/torrents",
  24.  
  25. "rpc-password": "apasswordofyourchoosing", #The password gets hashed and replaced when the daemon starts.
  26.  
  27. "rpc-username": "ausernameofyourchoosing",
  28.  
  29. "rpc-whitelist-enabled": false, #Make sure this is false if you want to be able to access it via LAN or internet (after forwarding port)
  30.  
  31. Save
  32.  
  33. sudo service transmission-daemon start
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement