HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

transmission-create — Create BitTorrent `.torrent` files. See also: `transmission`. More information: <https://manned.org/

Submitted by: @import:tldr-pages··
0
Viewed 0 times
createcommandbittorrentfilesclitransmission-createtorrentsee

Problem

How to use the transmission-create command: Create BitTorrent .torrent files. See also: transmission. More information: <https://manned.org/transmission-create>.

Solution

transmission-create — Create BitTorrent .torrent files. See also: transmission. More information: <https://manned.org/transmission-create>.

Create a torrent with a specific piece size (in KB):
transmission-create {{[-o|--outfile]}} {{path/to/example.torrent}} {{[-t|--tracker]}} {{tracker_announce_url}} {{[-s|--piecesize]}} {{2048}} {{path/to/file_or_directory}}


Create a private torrent with a specific piece size (in KB):
transmission-create {{[-p|--private]}} {{[-o|--outfile]}} {{path/to/example.torrent}} {{[-t|--tracker]}} {{tracker_announce_url}} {{[-s|--piecesize]}} {{2048}} {{path/to/file_or_directory}}


Create a torrent with a comment:
transmission-create {{[-o|--outfile]}} {{path/to/example.torrent}} {{[-t|--tracker]}} {{tracker_url1}} {{[-c|--comment]}} {{comment}} {{path/to/file_or_directory}}


Create a torrent with multiple trackers:
transmission-create {{[-o|--outfile]}} {{path/to/example.torrent}} {{[-t|--tracker]}} {{tracker_url1}} {{[-t|--tracker]}} {{tracker_url2}} {{path/to/file_or_directory}}


Display help:
transmission-create {{[-h|--help]}}

Code Snippets

Create a torrent with a specific piece size (in KB)

transmission-create {{[-o|--outfile]}} {{path/to/example.torrent}} {{[-t|--tracker]}} {{tracker_announce_url}} {{[-s|--piecesize]}} {{2048}} {{path/to/file_or_directory}}

Create a private torrent with a specific piece size (in KB)

transmission-create {{[-p|--private]}} {{[-o|--outfile]}} {{path/to/example.torrent}} {{[-t|--tracker]}} {{tracker_announce_url}} {{[-s|--piecesize]}} {{2048}} {{path/to/file_or_directory}}

Create a torrent with a comment

transmission-create {{[-o|--outfile]}} {{path/to/example.torrent}} {{[-t|--tracker]}} {{tracker_url1}} {{[-c|--comment]}} {{comment}} {{path/to/file_or_directory}}

Create a torrent with multiple trackers

transmission-create {{[-o|--outfile]}} {{path/to/example.torrent}} {{[-t|--tracker]}} {{tracker_url1}} {{[-t|--tracker]}} {{tracker_url2}} {{path/to/file_or_directory}}

Display help

transmission-create {{[-h|--help]}}

Context

tldr-pages: common/transmission-create

Revisions (0)

No revisions yet.