Skip to content

V2 support

S3Drive by default uses V2 cipher which isn't yet available in the mainline Rclone release.

If you want to use Rclone CLI with V2 cipher you'll need to build it yourself.

Build

Fetch latest Rclone with V2 cipher support

git clone https://github.com/tomekit/rclone.git
git checkout v1.71.0-with-v2-cipher

Linux

sudo apt-get install libfuse-dev
go build -v --ldflags "-s -X github.com/rclone/rclone/fs.Version=v1.71.0-with-v2-cipher" -tags "cmount"

Windows

go run bin/resource_windows.go -version v1.71.0-with-v2-cipher -syso resource_windows_`go env GOARCH`.syso

# WinFsp needs to be installed (incl. development package)
SET CPATH=C:\Program Files (x86)\WinFsp\inc\fuse
go build -v --ldflags "-s -X github.com/rclone/rclone/fs.Version=v1.71.0-with-v2-cipher" -tags "cmount" -buildmode exe

Install

After successful build Rclone binary shall appear in build folder.

You can confirm that it's working by running, e.g. on Linux

$ ./rclone  --version
rclone v1.71.0-with-v2-cipher
- os/version: ubuntu 25.04 (64 bit)
- os/kernel: 6.14.0-28-generic (x86_64)
- os/type: linux
- os/arch: amd64
- go/version: go1.24.5
- go/linking: dynamic
- go/tags: cmount

depending on your platform you can either install it globally or use locally.

Global

E.g. on Linux

sudo mv rclone /usr/bin/rclone
which rclone