我已经完成了关于如何将raspberry pi设置为torrent框的不同教程,但我认为大多数的操作方法教程已经过时了。
我还使用他的命令检查我的版本的deluge守护程序:
deluge -v
然后它返回:
deluged: 1.3.10
libtorrent: 0.16.18.0
到目前为止,我已经按照How-To Geek教程进行了操作。
链接:http://www.howtogeek.com/142044/how-to-turn-a-raspberry-pi-into-an-always-on-bittorrent-box/
在我盯着得到错误后,我完全卸载并删除了所有的洪水文件。
教程建议使用此命令:
sudo wget -O /etc/default/deluge-daemon http://cdn5.howtogeek.com/wp-content/uploads/gg/up/sshot5151a8c86fb85.txt
但是没有像/ etc / default / deluge-daemon这样的文件,而是有一个被淹没的命名文件(在新版本中可能是deluge-daemon的缩写)
该命令基本上是将文件http://cdn5.howtogeek.com/wp-content/uploads/gg/up/sshot5151a8c86fb85.txt的内容复制到位于/ etc / default / deluge-daemon的文件。
由于我无法找到溺水守护进程,我选择使用/ etc / default / deluged执行此操作
/ etc / default / deluged的原始内容:
# Defaults for deluged initscript
# sourced by /etc/init.d/deluged
# change to 1 to enable daemon
ENABLE_DELUGED=0
文件http://cdn5.howtogeek.com/wp-content/uploads/gg/up/sshot5151a8c86fb85.txt上提供的内容:
# Configuration for /etc/init.d/deluge-daemon
# The init.d script will only run if this variable non-empty.
DELUGED_USER="pi" # !!!CHANGE THIS!!!!
# Should we run at startup?
RUN_AT_STARTUP="YES"
但是两个文件看起来都不一样,而且大洪水守护程序在启动时不会加载。
答案 0 :(得分:2)
我设法使用本指南解决了这个问题:http://dev.deluge-torrent.org/wiki/UserGuide/Service/systemd。
deluge
用户是使用--home /var/lib/deluge
创建的。auth
用户的主目录中更新core.conf
(设置帐户)和allow_remote
(设置deluge
标志)文件(而不是{{1的主目录)通常在其他教程中提到的用户)。