我想通过 torrent 分享本地文件。我在家里的笔记本电脑上使用 Ubuntu 19.10 上的 Transmission 创建了一个 torrent,并成功添加了跟踪器udp://tracker.openbittorrent.com:80/announce
。
现在我想通过以下方式在我的 XEN 服务器上的 Debian 10 VM 上下载我在家里共享的文件deluged-console
:
我使用了这个操作方法:https://dev.deluge-torrent.org/wiki/UserGuide/ThinClient
我只需要一个运行的用户deluged
,deluge-console
所以我只需这样做:
apt install deluged deluge-console psmisc
useradd deluge-user
su deluge-user
deluged
deluge-console "config -s allow_remote True"
deluge-console "config allow_remote"
deluge-console
然后我添加了从 Transmission 中的文件复制的磁力链接(注意:您必须先添加跟踪器,然后复制磁力链接)在我的 Ubuntu 笔记本电脑上的 deludge-console 中,使用以下命令:
add magnet:?xt=urn:btih:....
并且它启动了 torrent,但是没有任何内容被传输:
Name: Testfile.mp3
ID: 6d288a34b359cdb5406f6858ab51edbacecefbd6
State: Downloading Down Speed: 0.0 KiB/s Up Speed: 0.0 KiB/s
Seeds: 0 (1) Peers: 0 (1) Availability: 0.00
Size: 0.0 KiB/0.0 KiB Ratio: -1.000
Seed time: 0 days 00:00:00 Active: 0 days 19:22:34
Tracker status: openbittorrent.com: Announce OK
Progress: 0.00% [~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~]
C: 0 (200) D: 0.0 KiB U: 0.0 KiB DHT: 293
info
我是否遗漏了什么?
我的 Debian VM 中的 deluged 似乎运行良好:如果我从某个地方添加另一个 torrent,它可以正常下载。也许我必须为我的笔记本电脑转发一些端口?