宝塔挂载 googledrive
正常安装 rclone 和添加 google drive 前面均已经有教程。
部署完成之后,执行以下操作
首先我们新建一个目录,这个自定义,我创建要绑定的目录如下:
mkdir -p /googledrive/gd12
新建一个rclone.service文件
vi /usr/lib/systemd/system/rclone.service
写入以下内容吗,代码中的 googledrive: 中的 googledrive 为在 rclone 绑定添加自定义名称
[Unit]
Description=rclone
[Service]
User=root
ExecStart=/usr/bin/rclone mount googledrive: /googledrive/gd12--allow-other --allow-non-empty
Restart=on-abort
[Install]
WantedBy=multi-user.target
重载daemon,让新的服务文件生效
systemctl daemon-reload
现在就可以用systemctl来启动rclone了
systemctl start rclone
设置开机启动
systemctl enable rclone
停止、查看状态可以用
systemctl stop rclone
systemctl status rclone
然后我们重启服务器
reboot
查看自启动状态
systemctl status rclone
查看磁盘挂载
df -h
注意,如果在执行的挂载的时候有报错如下
mount helper error: fusermount: fuse device not found, try ‘modprobe fuse’ first
Fatal error: failed to mount FUSE fs: fusermount: exit status 1
那么我们安装 fuse
yum -y install fuse
一切完成..........enjony it!