8 挂载WebDav目录
X edited this page 2024-09-17 21:55:01 +08:00
This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

LinuxRclone

  1. 安装程序
#Debian/ubuntu
apt install rclone

#也可以进入[官网下载]对应OS版本的包进行安装(https://rclone.org/downloads/)

  1. 配置应用
rclone config

#完成后会在用户目录生成一个配置文件
x@DeepinOS:~/.config/rclone$ pwd
/home/x/.config/rclone
  1. 配置开启自启动挂载
#编辑定时任务
crontab -e

#测试挂载效果,如证书错误可加上参数:--no-check-certificate
nohup rclone mount NextCloud:/  /home/x/RemoteFolder/  --vfs-cache-mode writes &

#配置开机挂载后保存
@reboot nohup rclone mount NextCloud:/(配置好的远程目录)  /home/x/RemoteFolder/(本地目录) --vfs-cache-mode writes &

Windows (RaiDriver)

  • 进入RaiDriver官网下载对应版本操作系统,输入设置好的远程目录信息挂载即可。