开机自启

先新建systemd配置文件,适用CentOS 7、Debian 8+、Ubuntu 16+。

#以下是一整条命令,一起复制到SSH客户端运行

cat > /etc/systemd/system/rclone.service <<EOF
[Unit]
Description=Rclone
After=network-online.target

[Service]
Type=simple
ExecStart=/usr/bin/rclone mount GoogleDrive:Favorites /root/GoogleDrive --allow-other --attr-timeout 5m 
--vfs-cache-mode full --vfs-cache-max-age 48h --vfs-cache-max-size 20G --vfs-read-chunk-size-limit 128M 
--buffer-size 128M --copy-links --no-gzip-encoding --no-check-certificate --allow-other --allow-non-empty 
--umask 000
Restart=on-abort
User=root

[Install]
WantedBy=default.target
EOF

开始启动:


systemctl start rclone

设置开机自启:


systemctl enable rclone

其他命令:


重启:systemctl restart rclone
停止:systemctl stop rclone
状态:systemctl status rclone