1.先新建systemd配置文件,适用CentOS 7、Debian 8+、Ubuntu 16+
2.再使用命令:
#将后面修改成你上面手动运行命令中,除了rclone的全部参数
command="mount onedrive5: /home/onedrive --allow-other --allow-non-empty --vfs-cache-mode writes"
#以下是一整条命令,一起复制到SSH客户端运行
cat > /etc/systemd/system/rclone.service <<EOF
[Unit]
Description=Rclone
After=network-online.target
[Service]
Type=simple
ExecStart=$(command -v rclone) ${command}
Restart=on-abort
User=root
[Install]
WantedBy=default.target
EOF
3.开始启动:
systemctl enable rclone
4.其他命令:
重启:systemctl restart rclone
停止:systemctl stop rclone
状态:systemctl status rclone
如果你想挂载多个网盘,那么将systemd配置文件的rclone.service改成rclone1.service即可,重启动什么的同样换成rclone1。