Tag: rutorrent

rTorrent init脚本无法正常工作

我正在尝试用rTorrent和ruTorrent建立一个Ubuntu 14.04盒子。 我已经安装了rTorrent,它使用我自己的用户帐户启动。 我创建了一个名为rtorrent的新用户帐户来运行rTorrent。 sudo adduser –system –group rtorrent 接下来,我在/home/rtorrent设置配置文件.rtorrent.rc ,并使rtorrent成为所述文件的所有者。 sudo chown rtorrent:rtorrent .rtorrent.rc 我非常希望rtorrent自动启动。 我从本指南中借用了以下init脚本: #!/bin/bash ### BEGIN INIT INFO # Provides: rtorrent # Required-Start: $local_fs $remote_fs $network $syslog # Required-Stop: $local_fs $remote_fs $network $syslog # Default-Start: 2 3 4 5 # Default-Stop: 0 1 6 # Short-Description: Start/stop rtorrent daemon ### END […]