Snzip 是使用 snappy 的命令行工具。它支持几种文件格式;framing-format、old framing-format、hadoop-snappy、raw 以及在官方 framing-format 定义之前由 snzip、snappy-java 和 snappy-in-java 使用的三种格式。
值得注意的变化
默认格式在 1.0.0 中改为 framing-format。 可以将 --with-default-format=snzip 作为 configure 选项来使用以前的 snzip 格式作为默认格式。
安装
从 tar-ball 安装
从 https://github.com/kubo/snzip/releases 下载 snzip,解压然后运行 configure。
tar xvfz snzip-1.0.4.tar.gz
cd snzip-1.0.4
./configure
make
make install
如果没有在/usr
或 /usr/local
下安装 snappy,则需要--with-snappy
按如下方式指定位置。
# install snappy
tar xvfz snappy-1.1.3.tar.gz
cd snappy-1.1.3
./configure --prefix=/usr/local/snappy
make
make install
cd ..
# install snzip
tar xvfz snzip-1.0.4.tar.gz
cd snzip-1.0.4
./configure --with-snappy=/usr/local/snappy
make
make install
当动态和静态 snappy 库都可用时,默认使用前者。当--with-static-snappy
作为配置选项传递时,使用后者。
注意:--with-static-snappy
在某些平台上不可用。可以使用--with-default-format
更改默认压缩格式。
./configure --with-default-format=snzip
安装为 rpm 包
我们不提供 rpm 包。你需要从 https://github.com/kubo/snzip/releases 下载 snzip,创建一个如下的 rpm 包并安装它。
# The rpm package will be created under $HOME/rpmbuild/RPMS.
rpmbuild -tb snzip-1.0.4.tar.gz
从最新源安装
使用 github 存储库中的源代码。
git clone git://github.com/kubo/snzip.git
cd snzip
./autogen.sh
./configure
make
make install