linux 挂载rclone开机启动脚本

①新建一个 rclone.service 文件 (需要自己修改 rclone 挂载名称及挂载目录)

cat << EOF |sudo tee -a /usr/lib/systemd/system/rclone.service 
[Unit]
Description = rclone

[Service]
User = root
ExecStart = /usr/bin/rclone mount gdrive: /www/wwwroot/nextcloud/data/user/files/googledrive --cache-dir /Temp --copy-links --no-gzip-encoding --no-check-certificate --allow-other --allow-non-empty --umask 000
Restart = on-abort

[Install]
WantedBy = multi-user.target

EOF

重载 daemon,让新的服务文件生效:

systemctl start rclone

设置开机启动:

 systemctl enable rclone

停止、查看状态可以用:

systemctl stop rclone
systemctl status rclone
ps -ef | grep rclone

重启你的 VPS,然后查看一下 rclone 的服务起来没,接着查看一下盘子挂上去没:

 reboot

查看挂载状态

systemctl status rclone
df -h

linux 挂载 rclone 开机启动脚本

正文完
 0