ubuntu下Rclone挂载webdav到本地磁盘
2024年10月22日 | 分类: | 标签: Rclone,webdav
1、安装rclone
sudo -v ; curl https://rclone.org/install.sh | sudo bash
2、进入rclone配置
rclone config
3、选择配置
(1)New remote
(2)enter 这个项目的名字
(3)选WebDAV
(4)输入alist的url(后面加/dav)如:http://wyj.me/adv
(5)选Other site
(6)输入用户名
(7)输入密码
(8)bearer_token 直接回车
(9)Edit advanced config? 直接回车
(10)Keep this “xxxxx” remote? 直接回车
可以检查项目:
rclone lsd myData:
4、添加项目的挂载
rclone mount myData: /root/myData --copy-links --allow-other --allow-non-empty --umask 000 --daemon
至此挂载完毕
其他:ubuntu设置重启后自动挂载:
2
由游客 发布 于 2024年11月4日 12:58