rclone安装
1 2 3 4 5 6 7 8 9 10 11 12 13
| curl https://rclone.org/install.sh | bash
rclone config
mkdir /root/GoogleDrive
rclone mount DriveName:Folder LocalFolder --copy-links --no-gzip-encoding --no-check-certificate --allow-other --allow-non-empty --umask 000 &
rclone mount Kid:/ /data/wwwroot/directory/GoogleDrive --copy-links --no-gzip-encoding --no-check-certificate --allow-other --allow-non-empty --umask 000 &
fusermount -qzu LocalFolder
|
开启自启动
先新建systemd
配置文件,适用CentOS 7
、Debian 8+
、Ubuntu 16+
。
再使用命令:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
| command="mount DriveName:Folder LocalFolder --copy-links --no-gzip-encoding --no-check-certificate --allow-other --allow-non-empty --umask 000"
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
|
开始启动:
设置开机自启:
其他命令:
1 2 3
| 重启:systemctl restart rclone 停止:systemctl stop rclone 状态:systemctl status rclone
|
如果你想挂载多个网盘,那么将systemd
配置文件的rclone.service
改成rclone1.service
即可,重启动什么的同样换成rclone1
。
备注
- 别把挂载盘当下载目录,可以下载到其它目录后,移动进挂载盘