我是 Bit Torrent Sync 和 Fedora 的新手。请问我如何才能在机器启动时启动 BT Sync?我可以通过浏览器客户端进行同步,但无法让它在机器启动时自动启动。
谢谢。
答案1
有一个很好的指南BitTorrent 论坛。本质上,您创建一个systemd
单元文件,用于在启动和关闭时处理 BTsync 守护程序的启动和关闭。
/etc/systemd/system/[email protected]
:
[Unit]
Description=BitTorrent Sync for %i
[Service]
Type=simple
User=%i
ExecStart=/path/to/btsync --nodaemon --config %h/.sync/sync.conf
WorkingDirectory=%h
[Install]
WantedBy=multi-user.target
开始使用: 启动时使用:systemctl start [email protected]
systemctl enable [email protected]