Questions tagged [transmission-daemon]

22 questions
14
votes
3 answers

Transmission torrent client sequential download

I'm using TransmissionBT torrent client (http://www.transmissionbt.com/). Is it possible to make simple modification in code to be able to download files in sequential mode (from beginning of the file). Then it will be possible to play video file…
user3626048
  • 706
  • 4
  • 19
  • 52
2
votes
1 answer

Synology ssh transmission command

I'm using Synology NAS and Package Center 'Transmission'(not docker). I want make sh script for transmission. so typing root@NAS:/volume3/NAS# transmission-remote -ash: transmission-remote: command not found I can't use transmission-remote…
Nocome
  • 35
  • 4
2
votes
0 answers

Transmission WebUI 409 in Docker Container

So, I've set up a docker container on my server host to act as a transmission-daemon seedbox. I installed openssh and transmission-daemon on the official Ubuntu 14.04 container. I forwarded port 9091 on the container to the host so I could access…
Justin Flowers
  • 145
  • 2
  • 11
1
vote
0 answers

I want to send a magnet using transmission-remote in window

You could start downloading remotely from linux to http://localhost:9091/transmission/web/ using the command in transmission-remote 9091-nid:password -a {magnet}. I want to do this on Windows as well. I used Python and now installed transmission and…
1
vote
0 answers

Transmission 3.0 update (Ubuntu 16.04) - using wrong settings folder

System just updated to Transmission 3.0. Things stopped working; initially RPC access. After trying lots of things, it wouldn't connect. So I've followed these instructions to 'start again' :…
dwids
  • 67
  • 2
  • 7
1
vote
1 answer

Transmission permission denied in docker

I am trying to use transmission in docker with the following docker-compose.yml file by running docker-compose -f docker-compose.yml up -d version: "3.6" services: transmission: image: lsioarmhf/transmission …
1
vote
1 answer

How to change added torrent file location for transmission-daemon

The transmission-daemon stores by default some temporary files and the added torrent files in the following directory: /var/lib/transmission-daemon/.config/transmission-daemon/ Is it possible to set another directory?
Mattia72
  • 825
  • 1
  • 8
  • 23
1
vote
0 answers

Transmission script-torrent-done not executing?

settings.json "script-torrent-done-enabled": true, "script-torrent-done-filename": "/var/lib/transmission/.config/transmission-daemon/torrent_complete.sh" the owner of the torrent_complete.sh - is transmission, the chmod is 777, but the script is…
Blurry Script
  • 329
  • 1
  • 3
  • 11
1
vote
0 answers

Transmission script-torrent-done not running?

settings.json "script-torrent-done-enabled": true, "script-torrent-done-filename": "/var/lib/transmission/.config/transmission-daemon/torrent_complete.sh" the owner of the torrent_complete.sh - is transmission, the chmod is 777, but the script is…
Blurry Script
  • 329
  • 1
  • 3
  • 11
1
vote
1 answer

Understanding Dockerfile CMD/ENTRYPOINT

I'm new to Docker. Trying to build small image with Transmission. Here is my Dockerfile: #base image FROM alpine:latest #install Transmission RUN apk update RUN apk add transmission-daemon #expose port EXPOSE 9091 #start app CMD…
user3414386
1
vote
1 answer

Transmission on FreeNAS does not call script on completion

I have been trying to get this running for over a week and am at a loss. I am trying to call a script on completion by using the settings.json config like so: "script-torrent-done-enabled": true, "script-torrent-done-filename":…
Duffmaster33
  • 1,160
  • 9
  • 16
0
votes
0 answers

Torrent cannot complete on transmission-remote in docker container due to continuous deletion of data

transmission-remote is running in a docker container with good internet connection, downloading a file with sufficient seeders. As the torrent approaches 99% completion, the download speed will slow, and then the completion rate will be reduced to…
0
votes
1 answer

Transmission-cli installed through homebrew where is 'settings.json' located

I've installed transmission-cli through homebrew (https://formulae.brew.sh/formula/transmission-cli) I cannot find settings.json, I want to run a script to send a notification/mail on completion of the torrent
0
votes
1 answer

Not connecting to RPC server in release mode, but works fine in debug mode

I have a command line app that does the following: downloads an RSS feed with torrent links stores it in a sqlite database and tags them as "added" or "ignored" connects to a transmission server (in my local network) loads items from sqlite marked…
Ataias Reis
  • 323
  • 1
  • 9
0
votes
0 answers

howto: restart a daemon service after timeout?

I have a daemon service (transmission) that timeouts after a few minutes of usage, I started a thread to find out why, but until then I'd like to know if there is a bash command where I can restart the service after it times out for x time? Right…
1
2