Skip to content

Instantly share code, notes, and snippets.

@ppaskowsky
Last active August 29, 2015 14:20
Show Gist options
  • Save ppaskowsky/5a014f89009a76581ba1 to your computer and use it in GitHub Desktop.
Save ppaskowsky/5a014f89009a76581ba1 to your computer and use it in GitHub Desktop.
setting.json transmission configuration file for raspberry pi
{
"alt-speed-down": 0,
"alt-speed-enabled": false,
"alt-speed-time-begin": 60,
"alt-speed-time-day": 127,
"alt-speed-time-enabled": true,
"alt-speed-time-end": 480,
"alt-speed-up": 450,
"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": "/root/torrents",
"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": "/root/Downloads",
"incomplete-dir-enabled": false,
"lpd-enabled": true,
"max-peers-global": 200,
"message-level": 2,
"peer-congestion-algorithm": "",
"peer-limit-global": 50,
"peer-limit-per-torrent": 10,
"peer-port": 33333,
"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": false,
"rpc-bind-address": "0.0.0.0",
"rpc-enabled": true,
"rpc-password": "{cc460a690d9b8d362793abaec2f6a566ea1e5dcfoPwTS1S7",
"rpc-port": 9091,
"rpc-url": "/transmission/",
"rpc-username": "transmission",
"rpc-whitelist": "127.0.0.1,192.168.1.*",
"rpc-whitelist-enabled": true,
"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": 400,
"speed-limit-up-enabled": true,
"start-added-torrents": true,
"trash-original-torrent-files": false,
"umask": 2,
"upload-limit": 100,
"upload-limit-enabled": 0,
"upload-slots-per-torrent": 14,
"utp-enabled": true,
"watch-dir": "/root/torrents/watch/",
"watch-dir-enabled": true
}
@ppaskowsky
Copy link
Author

Modify /etc/init/transmission-daemon.conf to change the user

Fields to change:

"download-dir": "/root/torrents",
"peer-port": 55555,
"rpc-whitelist": "127.0.0.1,192.168.1.*",
"umask": 2,
"watch-dir": "/root/torrents/watch/",
"watch-dir-enabled": true

@ppaskowsky
Copy link
Author

/bin/bash

transmission Install

aptitude update && aptitude -y install transmission-daemon screen htop mtr nmap iftop nload iotop vnstat vim && aptitude -y upgrade
mkdir /root/downloads
mkdir /root/watch
mkdir /root/session

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment