Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: rclone mount

...

Finalize it and save



Manual configuration

Edit ~/.config/rclone/rclone.conf with your editor of choice and insert a block like this:

...

Advanced commands with rclone

Mounting object storage on the filesystem

Code Block
rclone mount --daemon <REMOTE_NAME>:<PATH_DIRECTORY> /path/on/my/filesystem

This will give you a directory structure that you can use normal filesystem tools on to move around your object storage as if it were a filesystem.  Note that this is not especially performant, as object storage isn't a file system and thus will not handle very well when used as one, but it's ok for small scale activities.

This form of the command only allows the user running it to see the files - the option --allow-other (potentially in combination with others listed on https://rclone.org/commands/rclone_mount/) will allow others access.

Sync large amount of data to remote

...