# Rclone
For granting other users access to a mounted volume see [[Allowing All Users Access to a FUSE Mount on MacOS]].
## Mounting a remote
```shell
rclone cmount Archive: /Users/nikola/Volumes/Archive --vfs-cache-mode full --daemon --allow-root
```
- `--vfs-cache-mode` controls the amount of caching which will allow for simultaneous reads and writes and reduce bandwidth when rereading files all at the expense of disk space. `full` buffers both reads and writes and `writes` buffers write operations only.
- `--allow-root` will allow root users access to the mounted volume (say Arq)
## Protecting the Config With a Password
When the config is protected with a password you can set the `RCLONE_PASSWORD_COMMAND` environment variable which will allow you to retrieve it with the specified command.