Mac rclone mount not show version

What is the problem you are having with rclone?

On my Mac, I used the command ./rclone mount remote: /Users/volume --vfs-cache-mode full, but I noticed that the version files doesn't show up on the Mac. Could anyone let me know which parameter needs to be added to make it display the version files?

Run the command 'rclone version' and share the full output of the command.

rclone v1.72.0

  • os/version: darwin 26.1 (64 bit)
  • os/kernel: 25.1.0 (arm64)
  • os/type: darwin
  • os/arch: arm64 (ARMv8 compatible)
  • go/version: go1.25.4
  • go/linking: dynamic
  • go/tags: cmount

Which cloud storage system are you using? (eg Google Drive)

The command you were trying to run (eg rclone copy /tmp remote:tmp)

./rclone mount remote: /Users/volume --vfs-cache-mode full

Paste command here

Please run 'rclone config redacted' and share the full output. If you get command not found, please make sure to update rclone.

Paste config here

A log from the command that you were trying to run with the -vv flag

Paste  log here

Sorry but nobody can see your screen.

Start with telling us what is your remote? Post result of:

$ rclone config redacted remote:

And maybe explain a bit more what is “the version“… Maybe some example what you get vs what you expect?

Sorry for the confusion, I was hoping to be able to see previous versions in Finder (or file explorer), but I just checked and noticed that the object storage drive mounted with rclone on Windows also doesn’t display previous versions. They can only be viewed on the object storage website.

this will shows my configure

[ood]

type = s3

provider = Other

access_key_id = XXX

secret_access_key = XXX

endpoint = https://xxxx

acl = privateoverride.no_check_certificate = true

Versions can be seen and accessed using rclone:

For example to list all versions:

$ rclone --s3-versions ls remote:bucket/dir

to see remote state at specific date/time:

$ rclone ls remote:bucket/dir --s3-version-at "2025-11-12 15:46:00"

more details in the linked docs.

But you can also use mount.. simply add to your config new remote with versions:

[ood-with-versions]
type = s3
provider = Other
access_key_id = XXX
secret_access_key = XXX
endpoint = https://xxxx
acl = privateoverride.no_check_certificate = true
versions = true

and mount it.

Thanks. When I added versions = trueto the configuration file and remounted, I was indeed able to find the previous versions, but they appear as separate files. Is it possible to integrate them into the file and display them within the "Restore to" list?

For sure yes. But somebody has to develop it:)

Such functionality does not exist today in rclone mount

OK, noted, thanks a lot for your helping!!

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.