Scope: UCR Researchers, External Collaborators Audience: All Users Last Updated: March 20, 2026
While graphical clients like Cyberduck (KB019) are great for transferring files, you may want to interact with your CephRDS storage exactly like a USB drive or a local hard drive. This allows you to open, edit, and save files directly from your applications (like Word, Python, or R) into the cloud.
This guide explains how to mount your CephRDS buckets as a local drive for free across all major operating systems using Rclone.
Before mounting, you must have rclone installed and configured with your CephRDS credentials.
rds.ucr.edu).rclone engine from rclone.org.rclone config in your terminal to set up a remote named cephrds. Follow the steps in KB013 to complete this.Linux natively supports user-space file systems (FUSE), making mounting extremely simple and robust.
sudo apt install fuse3.mkdir ~/ceph-drive
rclone mount cephrds:your_bucket_name ~/ceph-drive --vfs-cache-mode writes --daemon
Note: The --vfs-cache-mode writes flag ensures files are cached locally and uploaded in the background, providing maximum performance.
Your files are now available in the ~/ceph-drive directory!
To mount drives on macOS, Rclone requires an additional open-source extension called macFUSE.
mkdir ~/Desktop/CephRDS
rclone mount cephrds:your_bucket_name ~/Desktop/CephRDS --vfs-cache-mode writes --daemon
You will now see a new volume appear on your Desktop named “CephRDS” that you can browse in Finder.
Windows requires a proxy file system driver to allow Rclone to create a virtual drive letter (like Z:\).
rclone mount cephrds:your_bucket_name Z: --vfs-cache-mode writes
(Leave the command prompt window open, or run it via a background script).
Open File Explorer, and you will see a new Z: drive containing your CephRDS data!
If you find configuring the command line intimidating, the community has built a free, graphical interface for Rclone called RcloneView.
It allows you to configure your rds.ucr.edu endpoint and click a visual “Mount” button to connect your drives automatically on startup for both Windows and Mac.