暗中观察

Linux 同步S3或者minio文件
一、官网及参考https://rclone.org/https://rclone.org/install/http...
扫描右侧二维码阅读全文
29
2021/04

Linux 同步S3或者minio文件

一、官网及参考

https://rclone.org/
https://rclone.org/install/
https://www.cnblogs.com/KakuCicada/p/13573132.html

二、安装

curl https://rclone.org/install.sh | sudo bash

三、使用

创建配置文件:
rclone config

同步本地文件到远程:
rclone sync -i /home/local/directory remote:bucket名称

同步远程文件到本地:
rclone sync remote:bucket名称 /home/local/directory

四、Tip1

后台静默同步问题(使用screen)
yum install -y screen
screen -S sockname
直接同步命令
然后按Ctrl+a+d键 退出终端
screen -ls  //显示已创建的screen终端
screen -r 2276 //连接 screen_id 为 2276 的 screen终端
Tip2
linux 下 超过4G大文件下载到本地:
cat xxx.tar |split  -b 2G - xxx.tar.
# 会按照2G文件进行切割, 切割后的文件xxx.tar.aa xxx.tar.ab ....
#然后 
sz xxx.tar.a*
#在目标机进行合并
cat xxx.tar.a* > xxx.tar
#然后验证文件哈希,测试是一致的.

Tip3
linux 删除文件后空间未释放
yum install -y lsof
lsof  | grep  deleted
kill -9 进程号

Tip4
linux 查找前10大文件
find / -type f -print0 | xargs -0 du -h | sort -rh | head -n 10


Last modification:April 20th, 2022 at 09:13 pm
If you think my article is useful to you, please feel free to appreciate

Leave a Comment