2020-03-23 05:50:19 +00:00
|
|
|
# transmission-create
|
|
|
|
|
2023-07-16 18:23:40 +01:00
|
|
|
> Create BitTorrent `.torrent` files.
|
2023-12-01 15:53:03 +00:00
|
|
|
> See also: `transmission`.
|
2021-04-16 15:42:14 +01:00
|
|
|
> More information: <https://manned.org/transmission-create>.
|
2020-03-23 05:50:19 +00:00
|
|
|
|
|
|
|
- Create a torrent with 2048 KB as the piece size:
|
|
|
|
|
|
|
|
`transmission-create -o {{path/to/example.torrent}} --tracker {{tracker_announce_url}} --piecesize {{2048}} {{path/to/file_or_directory}}`
|
|
|
|
|
|
|
|
- Create a private torrent with a 2048 KB piece size:
|
|
|
|
|
|
|
|
`transmission-create -p -o {{path/to/example.torrent}} --tracker {{tracker_announce_url}} --piecesize {{2048}} {{path/to/file_or_directory}}`
|
|
|
|
|
|
|
|
- Create a torrent with a comment:
|
|
|
|
|
|
|
|
`transmission-create -o {{path/to/example.torrent}} --tracker {{tracker_url1}} -c {{comment}} {{path/to/file_or_directory}}`
|
|
|
|
|
|
|
|
- Create a torrent with multiple trackers:
|
|
|
|
|
|
|
|
`transmission-create -o {{path/to/example.torrent}} --tracker {{tracker_url1}} --tracker {{tracker_url2}} {{path/to/file_or_directory}}`
|
|
|
|
|
2023-12-27 06:41:30 +00:00
|
|
|
- Display help page:
|
2020-03-23 05:50:19 +00:00
|
|
|
|
|
|
|
`transmission-create --help`
|