Zstandard (也被称为zstd )是一款免费的开源,快速实时数据压缩程序,具有更好的压缩比 (约为 10:1)。

yum group install "Development Tools" 
cd /usr/local	
git clone https://github.com/facebook/zstd.git
cd zstd
make
make install
ln -s /usr/local/zstd/zstd /usr/bin/

使用

压缩/test/*

tar -I zstd -c /test/* -f test.etcd

解压test.etcd

tar -I zstd -xvf test.etcd

相关文章:

  • 2021-07-29
  • 2021-11-17
  • 2021-12-25
  • 2022-02-07
  • 2021-06-15
  • 2021-11-05
  • 2021-12-12
  • 2022-12-23
猜你喜欢
  • 2022-01-29
  • 2021-06-30
  • 2022-03-03
  • 2021-08-04
  • 2021-10-28
  • 2021-10-16
相关资源
相似解决方案