Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Google Drive with rclone on unraid
- User script at startup of array:
- -----
- #!/bin/bash
- #backgroundOnly=true
- mkdir -p /mnt/cache/crypt
- mkdir -p /mnt/cache/rclonecache
- rm -R /mnt/cache/rclonecache/*
- rclone mount --uid 1000 --gid 100 --allow-other --buffer-size 128M --dir-cache-time 720h --drive-chunk-size 256M --log-level ERROR --allow-non-empty --vfs-read-chunk-size 128M --vfs-read-chunk-size-limit off --vfs-cache-mode writes --cache-dir /mnt/cache/rclonecache/drive crypt: /mnt/cache/crypt &
- -----
- meanwhile my rclone setup:
- -----
- [drive]
- type = drive
- scope = drive
- root_folder_id = *****
- token = ******
- [crypt]
- type = crypt
- remote = drive:
- filename_encryption = standard
- directory_name_encryption = true
- password = *****
- password2 = *****
- -----
- meanwhile my SMB config:
- -----
- #Clound Config
- [crypt]
- path = /mnt/cache/crypt
- comment =
- browseable = yes
- public = no
- valid users = *****
- writable = yes
- guest ok = no
- read only = no
- vfs objects =
- -----
Advertisement
Add Comment
Please, Sign In to add comment