Last active
January 4, 2024 01:11
-
-
Save diyism/64af0c97575aee452bc37c3e11e1301c to your computer and use it in GitHub Desktop.
rclone.conf for chunker over blomp swift
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
rclone.conf: | |
[blomp] | |
type = swift | |
user = [email protected] | |
key = 123456 | |
auth = https://authenticate.blomp.com | |
tenant = storage | |
auth_version = 2 | |
no_chunk = true | |
[blomp-chunker] | |
type = chunker | |
remote = blomp:[email protected] | |
chunk_size = 1Mi | |
hash_type = none | |
===============mount blomp in google colab============================= | |
!cat /root/sing/rclone.conf | |
!curl https://rclone.org/install.sh | bash | |
!ln -s /usr/bin/fusermount /usr/bin/fusermount3 | |
!mkdir /content/blomp_drive | |
!nohup rclone --config /root/sing/rclone.conf mount blomp-chunker: /content/blomp_drive >/dev/null 2>&1 & | |
=============rclone 1.65.0 can serve blomp cloud drive as s3:============= | |
rclone --config ./rclone.conf serve s3 blomp-chunker: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment