Transmission is a BitTorrent client which features a simple interface on top of a cross-platform back-end. Transmission is free software licensed under the terms of the GNU General Public License (GPL), with parts under the MIT License.
In this post, we detailed the steps to install transmission 2.82 on pcDuino. We follow the steps at this page with some modifications.
First, we need to install dependency packages:
$ sudo apt-get install build-essential automake autoconf libtool pkg-config intltool libcurl4-openssl-dev libglib2.0-dev libevent-dev libminiupnpc-dev libminiupnpc5 libappindicator-dev
Then, we can download the source files using:
$wget http://download.transmissionbt.com/files/transmission-2.82.tar.xz
Unzip the tarball:
$tar -xJf transmission-2.82.tar.xz
Now we can start the build:
$cd transmission-2.82 $ ./autogen.sh && make -s $ make install
Now we need to change the daemon password:
Shutdown:
$sudo /etc/init.d/transmission-daemon stop
Write the rpc-password in the /etc/transmission-daemon/settings.json file, in double-quotes.
Save that file
Startup:
$sudo /etc/init.d/transmission-daemon start
Login to the page, it’s at port 9091
Type in your password.
Please see the following screen shot:
Leave a Reply
You must be logged in to post a comment.