From 9e1a6b1f2aea79ad5482108912c558d1f4b68ad2 Mon Sep 17 00:00:00 2001 From: tiyn Date: Mon, 20 Feb 2023 23:37:53 +0100 Subject: [PATCH] transmission: change number of downloads --- wiki/transmission.md | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/wiki/transmission.md b/wiki/transmission.md index ccffd91..d454190 100644 --- a/wiki/transmission.md +++ b/wiki/transmission.md @@ -9,9 +9,27 @@ The software can be setup via [Docker](/wiki/docker.md) with the [haugene image](./docker-images/haugene_-_transmission-openvpn.md) that includes an openvpn tunnel. -## Settings for Download and Upload +## Limiting Upload When the downloaded torrent should not be seeded the best way is enabling and setting `Stop seeding at ratio:` to `0` under `Torrents` in the settings. This will stop the process of seeding once a package is downloaded allowing other torrents to start downloading. + +## Change Number of Concurrent Downloads and Uploads + +The default number of concurrent downloads is set to 5. +To increase this number edit the file `~/.config/transmission/settings.json` +inside the system that runs Transmission and change change the following line to +the preferred number of downloads. +When running +[the haugene image](./docker-images/haugene_-_transmission-openvpn.md) the file +is located at `/config/transmission-home/settings.json`. + +```txt +"download-queue-size": 5 +``` + +The number of concurrent uploads is not limited. +Disabling the uploads of files can be done manually or by +[limiting the upload](#limiting-upload).