2020-11-11 11:47:10 +01:00
---
title: Transmission
template: docs
taxonomy:
2020-11-14 14:14:50 +01:00
category: docs, apps
2021-02-06 18:22:00 +01:00
routes:
default: '/app_transmission'
2020-11-11 11:47:10 +01:00
---
2021-02-06 23:39:43 +01:00
![Transmission's logo ](image://transmission.png )
2014-06-15 16:15:47 +02:00
2020-09-30 18:19:44 +02:00
### What is Transmission?
2014-06-15 16:15:47 +02:00
2014-11-09 12:07:27 +01:00
Transmission is a share software based on BitTorrent protocol.
2014-08-08 18:58:29 +02:00
* [Transmission web site ](http://transmissionbt.com/ )
2014-06-15 16:15:47 +02:00
2014-08-08 18:58:29 +02:00
### How to download completed files?
2014-06-15 16:15:47 +02:00
2014-11-09 12:08:50 +01:00
If Transmission is installed on `/torrent/` , you could download your completed files to the following address: https://your-domain-name.org/torrent/downloads/
2014-08-08 18:58:29 +02:00
### Sending files towards server for seeding
In YunoHost, completed files are saved in: `/home/yunohost.transmission/completed`
#### With SFTP
With your [file manager ](https://en.wikipedia.org/wiki/File_manager ) (under GNU/Linux) do `CTRL + L` then enter:
```bash
sftp://< user > @< your-domain.org > /home/yunohost.transmission/completed
```
user = admin or root
2014-06-15 16:15:47 +02:00
2015-05-20 12:39:51 +02:00
#### With SCP (complex)
To transfer file, type in the following command:
```bash
scp (-r) /your/file/ root@your-domain.org:/home/yunohost.transmission/completed
```
##### How to download a complete folder?
2020-09-22 22:27:52 +02:00
Once connected to your server, using [SSH ](/ssh ), move to the download folder and ZIP it:
2015-05-20 12:39:51 +02:00
```bash
cd /home/yunohost.transmission/completed
zip -r your_archive.zip [dossier]
```
2020-09-14 15:32:07 +02:00
More informations about file transfer using *scp* : http://doc.ubuntu-fr.org/ssh#transfert_-_copie_de_fichiers (French, need English documentation)