This is a text-only version of the following page on https://raymii.org:
---
Title       :   Transmission Web on a Raspberry Pi with Arch Linux
Author      :   Remy van Elst
Date        :   28-04-2014
URL         :   https://raymii.org/s/blog/Transmission-Raspberry-Pi-Arch-Linux.html
Format      :   Markdown/HTML
---



![transmission][1]

One of my Raspberry Pi's was running a test setup of the Citadel groupware
service. The test was sucessfull, so I set up a real world setup. The Raspberry
Pi would serve another purpose, namely, a Linux Torrent seedbox. As in, to seed
Linux torrents from [linuxtracker.org][2].

<p class="ad"> <b>Recently I removed all Google Ads from this site due to their invasive tracking, as well as Google Analytics. Please, if you found this content useful, consider a small donation using any of the options below:</b><br><br> <a href="https://leafnode.nl">I'm developing an open source monitoring app called  Leaf Node Monitoring, for windows, linux & android. Go check it out!</a><br><br> <a href="https://github.com/sponsors/RaymiiOrg/">Consider sponsoring me on Github. It means the world to me if you show your appreciation and you'll help pay the server costs.</a><br><br> <a href="https://www.digitalocean.com/?refcode=7435ae6b8212">You can also sponsor me by getting a Digital Ocean VPS. With this referral link you'll get $100 credit for 60 days. </a><br><br> </p>


I choose Transmission for this, because it is simple, fast and stable.
Transmission has a good webinterface, plus it allows access from remote clients
with the transmission-remote gui packages.

My Pi's run Arch Linux, so setup of Transmission is fairly easy. First install
it with pacman:



   sudo pacman -Syu transmission-cli


Enable the service at startup:



   sudo systemctl enable transmission


Start the service:



   sudo systemctl start transmission


Create a folder where your user and the transmission group (where the
transmission user belongs to) can read and write:



   sudo mkdir -p /mnt/data/torrents/{incomplete,complete,torrentfiles}
   sudo chown -R remy:transmission /mnt/data/torrents
   sudo chmod -R 775 /mnt/data/torrents


In my example the folder `/mnt/data/torrents` is an external USB harddrive which
is mounted via `/etc/fstab` at boot. Remember to change `remy` to your Pi
username.

Stop the daemon to make sure the config file edits stick:



   sudo systemctl stop transmission


Edit the default config file to allow remote access to the daemon (or do not do
that and use an ssh tunnel every time) and update the downloads path:



   sudo vim /var/lib/transmission/.config/transmission-daemon/settings.json


Change the following parameters:



       # From
       "download-dir": "/var/lib/transmission/Downloads",
       # To
       "download-dir": "/mnt/data/torrents/complete",

       # From:
       "incomplete-dir": "/var/lib/transmission/Downloads",
       # To
       "incomplete-dir": "/mnt/data/torrents/incomplete",

       # From
       "incomplete-dir-enabled": false,
       # To
       "incomplete-dir-enabled": true,

       # From
       "rpc-whitelist": "127.0.0.1",
       # To
       "rpc-whitelist": "*.*.*.*",


This sets the correct download folders and allows access from everywhere to the
transmission webinterface. You can also list a range there (192.168.1.0/24) or
just one IP address.

If you do not udate the ACL you get a nice error message when connecting:



   403: Forbidden

   Unauthorized IP Address.

   Either disable the IP address whitelist or add your address to it.

   If you're editing settings.json, see the 'rpc-whitelist' and 'rpc-whitelist-enabled' entries.

   If you're still using ACLs, use a whitelist instead. See the transmission-daemon manpage for details.


If all went well you should be able to connect to `http://YOUR-PI-IP:9091` and
see the nice transmission webinterface.

If you are going to download copyrighted material you might want to enable a
blocklist, see [iblocklist.com][4] for more info on that.

If you want more info on Transmission on Arch Linux, read up on [the arch
wiki][5].

  [1]: https://raymii.org/s/inc/img/transmission.png
  [2]: http://linuxtracker.org
  [3]: https://www.digitalocean.com/?refcode=7435ae6b8212
  [4]: https://www.iblocklist.com/lists.php
  [5]: https://wiki.archlinux.org/index.php/Transmission

---

License:
All the text on this website is free as in freedom unless stated otherwise.
This means you can use it in any way you want, you can copy it, change it
the way you like and republish it, as long as you release the (modified)
content under the same license to give others the same freedoms you've got
and place my name and a link to this site with the article as source.

This site uses Google Analytics for statistics and Google Adwords for
advertisements. You are tracked and Google knows everything about you.
Use an adblocker like ublock-origin if you don't want it.

All the code on this website is licensed under the GNU GPL v3 license
unless already licensed under a license which does not allows this form
of licensing or if another license is stated on that page / in that software:

   This program is free software: you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation, either version 3 of the License, or
   (at your option) any later version.

   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.

   You should have received a copy of the GNU General Public License
   along with this program.  If not, see <http://www.gnu.org/licenses/>.

Just to be clear, the information on this website is for meant for educational
purposes and you use it at your own risk. I do not take responsibility if you
screw something up. Use common sense, do not 'rm -rf /' as root for example.
If you have any questions then do not hesitate to contact me.

See https://raymii.org/s/static/About.html for details.