linux中文件的压缩与打包简介

本文详细介绍了常见的压缩文件扩展名及其对应的压缩命令,包括gzip、bzip2、tar等,并提供了命令参数说明与实例演示。

目前一些常见的压缩文件扩展名:

*.Z:compress程序压缩的文件;(已经过时)

*.bz2:bzip2程序压缩的文件;

*.gz:gzip程序压缩的文件;

*.zip

*.tar:tar程序打包的数据,并没有压缩过;

*.tar.gz:tar程序打包的文件,并没有压缩过;

*.tar.bz2


gzip [-cdt#] 文件名

-c : 将压缩的数据输出到屏幕上,通过数据流重导向来处理。

-d : 解压缩的参数

-t : 检验压缩文件的一致性

-# :压缩等级,1最快,9最慢,默认6

例:

gzip man.config

zcat man.config

gzip -d man.config.gz

gzip -9 -c man.config > man.config.gz


bzip2 ,bzcat

bzip2 [-cdz#] 文件名

bzcat 文件名.bz2

参数:

-c : 将压缩过程产生的数据输出到屏幕上。

-d : 解压缩的参数。

-z : 压缩的参数。

-# : 1最快,9最佳

bzip2 -z man.config

bzcat man.config.bz2

bzip2 -d man.config.bz2

bzip2 -9 -c man.config > man.config.bz2


unzip *.zip


tar [-cxtzjvfpPN] 文件与目录

参数:

-c : 建立压缩文件的参数命令(create的意思)。

-x : 解压缩文件的参数命令。

-t : 查看tarfile里的文件。

特别注意,在使用参数时,c/x/t只能有一个,不可同时存在,因为不可能调试压缩与解压缩。

-z :  是否同时具有gzip的属性?即是否需要用gzip压缩?

-j : 是否同时具有bzip2的属性?即是否需要用bzip2压缩?

-v : 压缩的过程中显示文件。

-f : 使用文件名。

-p : 使用文件的原来属性。

-P : 可以使用绝对路径来压缩。

-N : 比后面接的日期(y/m/d)还要新的才会打包。

--exclude FILE : 在压缩过程中,不要将FILE打包。


参考: 《鸟哥的私房菜-基础学习篇》


编译 ./configure --prefix=/usr/local/php --exec-prefix=/usr/local/php --bindir=/usr/local/php/bin --sbindir=/usr/local/php/sbin --includedir=/usr/local/php/include --libdir=/usr/local/php/lib/php --mandir=/usr/local/php/php/man --with-config-file-path=/usr/local/php/etc --with-mysql-sock=/var/run/mysql/mysql.sock --with-mcrypt=/usr /i nclude --with-mhash --with-openssl --with-mysql=shared,mysqlnd --with-mysqli=shared,mysqlnd --with-pdo-mysql=shared,mysqlnd --with-gd --with-iconv --with-zlib --enable-zip --enable-inline-optimization --disable-debug --disable-rpath --enable-shared --enable-xml --enable-bcmath --enable-shmop --enable-sysvsem --enable-mbregex --enable-mbstring --enable-ftp --enable-gd-native-ttf --enable-pcntl --enable-sockets --with-xmlrpc --enable-soap --without-pear --with-gettext --enable-session --with-curl --with-jpeg-dir --with-freetype-dir --enable-opcache --enable-fpm --enable-fastcgi --with-fpm-user=www --with-fpm-group=www --without-gdbm --with-mcrypt=/usr/local/apps/libmcrypt --disable-fileinfo 报错:1, **configure: error: system libzip must be upgraded to version >=**0.11。 使用Yum最新版只到0.10,不足以达到要求。 一、先删除libzip yum remove libzip -y SSH执行以上命令,先删除libzip 和 libzip-devel 二、下载安装并手动编译 wget https://nih.at/libzip/libzip-1.2.0.tar.gz tar -zxvf libzip-1.2.0.tar.gz cd libzip-1.2.0 ./configure make && make install 三、(可忽略)另外最新版本请参考官网:https://nih.at/libzip/ 1.5.0的libzip需要cmake wget https://libzip.org/download/libzip-1.5.0.tar.gz tar -zxvf libzip-* cd libzip* mkdir build && cd build && cmake .. && make && make install 报错2: error: off_t undefined; check your library configuration 根据报错信息configure: error: off_t undefined; check your library configuration 未定义的类型 off_t。 off_t 类型是在 头文件 unistd.h中定义的,在32位系统 编程成 long int ,64位系统则编译成 long long int ,这里题主的系统应该是 64位的吧,在进行编译的时候 是默认查找64位的动态链接库,但是默认情况下 centos 的动态链接库配置文件/etc/ld.so.conf里并没有加入搜索路径,这个时候需要将 /usr/local/lib64 /usr/lib64 这些针对64位的库文件路径加进去。 采用下面的方法。 添加搜索路径到配置文件 echo '/usr/local/lib64 /usr/local/lib /usr/lib /usr/lib64'>>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值