so rclone uses a term called ‘remotes’ to define the cloud storage. You setup the unencrypted remotes and then you create a new ‘crypt’ remote that sits ontop of the unencrypted remote. When you create a crypt remote, it will prompt you for the existing remote to use…make sure you end the unencrypted remote with a colon when prompted…ala “acd:”
I have 4 remotes:
1: acd (amazon cloud drive)
2: eacd (encrypted amazon cloud drive)
3: gdrive (google drive)
4: egdrive (encrypted google drive).
Let’s say my dir structure in acd is:
media/Movies
media/TV Shows
plain/docs
plain/notes
If I want to move(vs copy) file to my encrypted acd movies directory I would use this:
rclone move /home/user/torrents/complete/Movies eacd:media/Movies/
If I want to move files to a unencrypted section:
rclone move /path/to/my/files acd:plain/docs/
mount works in the same way. I can mount either the unencrypted or encrypted:
encrypted:
rclone mount eacd: /my/mount/path --allow-other --no-modtime --dir-cache-time=2m &
This will mount the encrypted data in human(plex) readable format.
unencypted:
rclone mount acd: /my/mount/path --allow-other --no-modtime --dir-cache-time=2m &
Note the colon in everything. The first directory is always remote:first_directory/second_directory.
so if I wanted to mount a subdir I would do:
rclone mount eacd:media/Movies /my/path/ --allow-other --no-modtime --dir-cache-time=2m &
There is no need to do the two mounts like the acd_cli/encfs combo(with the reverse) but you could mount both the encryted and ‘plain’ if you wanted to. rclone will do the decryption on the fly and just show you the encrypted data as unencrypted in the mount. It makes sense…why show you the encrypted?
If you really want to see it encrypted, you can check the ACD web interface.
rclone is rsync for cloud. He tries very hard to mimic rsyncs functionality.
edit: I sync between acd and gdrive. I bought a $15 unlimited gdrive on ebay as a backup place:
rclone sync eacd: egdrive: