在命令行上使用 Transmission-create 创建 torrent 时出现问题

在命令行上使用 Transmission-create 创建 torrent 时出现问题

看看文档,可以在此处找到。

尽管我一直遇到这个错误,但我还是尝试重新创建确切的示例。

sudo transmission-create -o ~/home/files.torrent -c "My comments" -t udp://tracker.openbittorrent.com:80 ~/home/testfile.txt

尽管我一直遇到这个错误。

Creating torrent "/home/torrent/home/files.torrent" ...[2015-06-08 19:27:17.554 EDT] Torrent Creator is skipping file "/home/torrent": No such file or directory
. error reading "": No such file or directory

/home 中唯一的文件是,testfile.txt我不知道它是/home/torrent从哪里获取的。

我遗漏了什么?谢谢。

答案1

错误清楚地表明

Creating torrent "/home/torrent/home/files.torrent" ...[2015-06-08 19:27:17.554 EDT] Torrent Creator is skipping file "/home/torrent": No such file or directory
. error reading "": No such file or directory

从这里我猜问题出在你指向的目录没有退出,请尝试使用

sudo transmission-create -o ~/files.torrent -c "My comments" -t udp://tracker.openbittorrent.com:80 ~/testfile.txt

~ 表示你的主目录

相关内容