如何使用命令行创建.torrent?


34

我正在使用mktorrent,但是由于某些奇怪的原因它不会对目录中的文件进行哈希处理,因此我遇到了问题...

我正在寻找专门用于命令行的替代品


我自己从来没有做过,所以评论而不是回答,最著名的torrent客户端在gui部分具有此功能,其中一些具有命令行界面。您可以在transmission-cli或qbittorrent-nox或deluge-console或rtorrent上试一试。
sagarchalise 2011年

1
rtorrent没有可悲的洪流创建(我使用的是洪流),我将检查其他
洪流

1
rtorrent没有,也没有开发人员所说的创建功能:libtorrent.rakshasa.no/ticket/656
Pedram

Answers:



23

传输可以做到:

$ ./transmission-create --help
Usage: transmission-create [options] <file|directory>

Options:

 -h --help              Display this help page and exit
 -p --private           Allow this torrent to only be used with the specified tracker(s)
 -o --outfile <file>    Save the generated .torrent to this filename
 -c --comment <comment> Add a comment
 -t --tracker <url>     Add a tracker's announce URL
 -V --version           Show version number and exit

一个例子可能是:

transmission-create -o /var/lib/transmission-daemon/downloads/files.torrent -c "My comments" -t udp://tracker.openbittorrent.com:80 ~/torrent/complete/my_file_or_directory_to_share.extension

您可以在这里找到更多文档


请注意,传输似乎无法使用Webseeds创建Torrent文件。
Frederick Nord

1

建立种子

sudo apt-get install buildtorrent

从突触:

说明:命令行洪流创建程序

buildtorrent是一个torrent文件创建程序。给定一个公告URL和一个输入文件或目录,buildtorrent会生成一个输出.torrent文件,torrent客户端可以使用该文件。


By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.