I installed transmission-cli, transmission-remote, and transmission-common on my Ubuntu 12.04 LTS box.
I am able to add a torrent (transmission-remote -a name.torrent) but it is unable to download the torrent because of permission errors.
I created a user and set the download-location:
Code: Select all
transmission-daemon -f -t -u my_username -v my_password -w /path/to/downloaded/torrents -c /path/to/incomplete/torrents
I changed the permission of the download and incomplete folder to:
Code: Select all
chmod -R 777 /path/to/downloaded/torrents
chomd -R 777 /path/to/incomplete/torrents
Code: Select all
chown my_username:my_username /path/to/downloaded/torrents
chown my_username:my_username /path/to/incomplete/torrents
/home/user/.config/transmission-daemon/settings.json
seem to be ok."download-dir": "/path/to/downloaded/torrents",
"incomplete-dir": "/path/to/incomplete/torrents",
"watch-dir": "/path/to/incomplete/torrents",
"rpc-username": "my_username",
Still, when I start a torrent, it starts downloading for a few seconds, then it stops.
/var/log/syslog shows:
Also, when I doJul 4 10:57:57 XXX transmission-daemon[4096]: Couldn't create "/home/my_username/Downloads/Incomplete//TORRENT_FILES": Permission denied (utils.c:569)
Jul 4 10:57:57 XXX transmission-daemon[4096]: Couldn't create "/home/my_username/Downloads/Incomplete//TORRENT_FILES": Permission denied (fdlimit.c:360)
Jul 4 10:57:57 XXX transmission-daemon[4096]: TORRENT_FILES tr_fdFileCheckout failed for "/home/my_username/Downloads/Incomplete//TORRENT_FILES/file.extension.part": Permission denied (inout.c:100)
Jul 4 10:57:57 XXX transmission-daemon[4096]: TORRENT_FILES Permission denied (/var/lib/transmission-daemon/downloads/TORRENT_FILES/file.extension) (torrent.c:487)
Jul 4 10:57:57 XXX transmission-daemon[4096]: TORRENT_FILES Pausing (torrent.c:1763)
Jul 4 10:57:57 XXX transmission-daemon[4096]: Couldn't create "/home/my_username/Downloads/Incomplete//TORRENT_FILES": Permission denied (utils.c:569)
Jul 4 10:57:57 XXX transmission-daemon[4096]: Couldn't create "/home/my_username/Downloads/Incomplete//TORRENT_FILES/123": Permission denied (fdlimit.c:360)
Jul 4 10:57:57 XXX transmission-daemon[4096]: TORRENT_FILES tr_fdFileCheckout failed for "/home/username/Downloads/Incomplete//TORRENT_FILES/123/file.txt.part": Permission denied (inout.c:100)
Code: Select all
transmission-remote --auth my_username:my_password
but when I doUnexpected response: <h1>401: Unauthorized</h1>Unauthorized User
Code: Select all
transmission-remote --auth transmission:transmission
Does anybody know why I get these permission errors and how I can repair them?
Thnx! M0s..