Last active
January 4, 2024 00:47
-
-
Save diyism/afb26ee5fbfe6c5d8e8ce2d46e3be047 to your computer and use it in GitHub Desktop.
rclone with storj(ipfs)
This file contains 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
curl https://rclone.org/install.sh | sudo bash | |
装最新版rclone支持storj的150GB免费空间(apt里版本太旧不支持storj), | |
本地上传/下载到storj us带宽大概0.8MB/s, | |
而在VPS里玩能到8MB/s, | |
用"rclone rcd --rc-web-gui"能启动网页版管理界面, | |
觉得可作为VPS的扩展盘使用, | |
可惜没集成player,folder comparer | |
https://docs.storj.io/dcs/how-tos/sync-files-with-rclone/rclone-with-native-integration/ | |
rclone config | |
n | |
strojus | |
36 | |
1 //Use an existing access grant. | |
q | |
rclone mkdir storjus:bucket1 | |
rclone lsd storjus: | |
rclone copy --progress a.img storjus:bucket1/ | |
rclone copy --progress storj:bucket1/a.img ./ | |
#paralellelize to speed up: | |
rclone copy --progress --transfers 4 --s3-upload-concurrency 16 --s3-chunk-size 64M a.img storjus:bucket1/ | |
rclone copy --progress --transfers 10 storjus:bucket1/ /tmp |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment