Auto Remove Torrents
在安装完 autoremove-torrents 后,你会在 /home/${username}/.config/autoremovetorrents
中找到一个示例配置文件 config.yml
, 其中记录着几个最基本的使用方法。详细的配置方法参见官方文档。你可以直接以下列方式运行:
/home/${username}/.local/autoremovetorrents/bin/autoremove-torrents -c /home/${username}/.config/autoremovetorrents/config.yml -l /home/${username}/.config/autoremovetorrents/logs
如果使用 cronjob 则可以如下使用:
crontab -e -u ${username}
添加以下内容(每小时整点运行一次):
# min hour day month week command
0 * * * * /home/${username}/.local/autoremovetorrents/bin/autoremove-torrents -c /home/${username}/.config/autoremovetorrents/config.yml -l /home/${username}/.config/autoremovetorrents/logs
TIP
你可以使用 https://crontab.guru/ 确定计划任务
TIP
如果你遇到了
WARNING: `pyenv init -` no longer sets PATH.
Run `pyenv init` to see the necessary changes to make to your configuration.
那么可以通过 root 下运行如下代码解决
cat > /root/.bash_pyenv <<EOF
# pyenv
export PYENV_ROOT="/opt/pyenv"
export PATH="/opt/pyenv/bin:\$PATH"
eval "\$(pyenv init --path)"
EOF
后续版本将修复这个警告
你可以用如下指令修复
bash <(wget -qO- https://wiki.ptbox.dev/scripts/art-patch.sh -o /dev/null)