谁知道怎么用rclone挂载谷歌无限盘
unraid吧
全部回复
仅看楼主
level 1
氕氘氚 楼主
rclone已经配置好了,怎么挂载上unraid的本地目录?
2020年05月11日 11点05分 1
level 1
楼主你弄好来吗 ?我也头疼来一天来 用了很多命令就是不行啊
2020年05月20日 12点05分 2
level 1
1、安装 rclone-beta 和User Scripts
2、Rclone挂载后 修改Mount Script和Unmount Script的参数路径
3、 传送 到User Scripts 然后执行startup 就挂载成功了。
2020年05月27日 09点05分 3
level 1
Mount Script的参数 参考如下:
#!/bin/bash
#----------------------------------------------------------------------------
#first section makes the folders for the mount in the /mnt/user/dy folder so docker containers can have access
#there are 1 entries below as in the video i had 3 remotes ggy home6 vr
#you only need as many as what you need to mount for dockers or a network share
mkdir -p /mnt/user/dy/ggy
mkdir -p /mnt/user/dy/home6
mkdir -p /mnt/user/dy/vr
#This section mounts the various cloud storage into the folders that were created above.
rclone mount --max-read-ahead 1024k --allow-other ggy: /mnt/user/dy/ggy &
rclone mount --max-read-ahead 1024k --allow-other home6: /mnt/user/dy/home6 &
rclone mount --max-read-ahead 1024k --allow-other vr: /mnt/user/dy/vr &
2020年05月27日 09点05分 4
level 1
Unmount Script的参数如下:
#!/bin/bash
#----------------------------------------------------------------------------
fusermount -u /mnt/user/dy/ggy
fusermount -u /mnt/user/dy/home6
fusermount -u /mnt/user/dy/vr
2020年05月27日 09点05分 5
level 4
问一下 挂载它有什么用吗 是自动上传备份?
2020年06月04日 05点06分 6
level 1
加我
2020年12月28日 06点12分 7
1