💾 Archived View for darknesscode.xyz › linux › transmission-localhost.gmi captured on 2023-05-24 at 17:54:54. Gemini links have been rewritten to link to archived content
⬅️ Previous capture (2021-12-05)
-=-=-=-=-=-=-
Transmission is a light-weight and cross-platform BitTorrent client.
sudo pacman -S transmission
audo apt install transmission-daemon
sudo xbps-install -S transmission
Because we like to use the terminal (cli/tui apps). The easy way to start using transmission is to run the daemon under our user and no need for extra settings in transmission config file.
transmission-daemon
transmission-remote -a "https://cdimage.debian.org/debian-cd/current/amd64/bt-cd/debian-11.0.0-amd64-netinst.iso.torrent"
transmission-remote -a "magnet:?xt=urn:btih:0aae223b7c0244e4952158554cd0506f0eca1fdf&dn=archlinux-2021.09.01-x86_64.iso"
transmission-remote -l
You will get something like:
ID Done Have ETA Up Down Ratio Status Name 1 100% 872.8 MB Done 0.0 0.0 0.0 Idle archlinux-2021.09.01-x86_64.iso 2 100% 459.3 MB Done 0.0 0.0 0.0 Idle debian-edu-11.0.0-amd64-netinst.iso Sum: 1.33 GB 0.0 0.0
To delele a torrent:
transmission-remote -t 1 -r
Delete several torrents:
transmission-remote -t 1,2 -r
Delete all the torrents at ones:
transmission-remote -t all -r
I don't like to have transmission in the background all the time. I stop it with:
transmission-remote --exit
----------
----------
© DarknessCode