linux中压缩解压缩命令

目录

  • gzip
  • gunzip
  • tar(打包压缩)
  • tar(解包解压)
  • zip
  • unzip
  • bzip2
  • bunzip2

    gzip

    解释

命令名称:gzip
命令英文原意:GUN zip
命令所在路径:/bin/gzip
执行权限:所有用户
功能描述:压缩文件

语法

# 压缩后文件格式.gz
gzip [文件]

示例

# 压缩文件
gzip /tmp/services

[[email protected] ~]# ls /tmp
Aegis-<Guid(5A2C30A2-A87D-490A-9281-6765EDAD7CBA)>  php-cgi.sock
hsperfdata_root                                     services
issue.hard                                          systemd-private-9255c5ee9ec84f5987c1d9ba485e177e-ntpd.service-eKcnmD
issue.soft                                          test
Japan                                               test.txt
mysql.sock
[[email protected] ~]# gzip /tmp/services
[[email protected] ~]#  ls -lh /etc/services
-rw-r--r--. 1 root root 655K Jun  7  2013 /etc/services
[[email protected] ~]# ls -lh /tmp/services.gz
-rw-r--r-- 1 root root 133K Nov 29 17:45 /tmp/services.gz

# 压缩前655k,压缩后133k

gzip只能压缩文件,而且压缩后,原文件不在了

gunzip

解释

命令名称:gunzip
命令英文原意:GUN unzip
命令所在路径:/bin/gunzip
执行权限:所有用户
功能描述:解压缩.gz文件

语法

# 解压缩.gz文件
gunzip [文件]

示例

# 解压缩services.gz文件
gunzip services.gz

tar

解释

命令名称:tar
命令所在路径:/bin/tar
执行权限:所有用户
功能描述:打包目录

语法

tar 选项[-zcf] [压缩后文件名] [被打包的目录]
    -c 打包
    -v 显示详细信息
    -f 指定文件名
    -z 打包同时压缩

示例

# 打包并压缩文件
tar -czf Japan.tar.gz  /tmp/Japan
tar -zcf Japan.tar.gz  /tmp/Japan

# -f必须处于最后面,否则报错
tar -zfc Japan.tar.gz  /tmp/Japan

[[email protected] ~]# tar -zfc Japan.tar.gz  /tmp/Japan
tar: You must specify one of the `-Acdtrux' or `--test-label'  options
Try `tar --help' or `tar --usage' for more information.
[[email protected] ~]# tar -zcf Japan.tar.gz  /tmp/Japan
tar: Removing leading `/' from member names
[[email protected] ~]# ls
boduo  Japan.tar.gz  lnmp-install.log  test.txt
[[email protected] ~]# rm Japan.tar.gz
rm: remove regular file ‘Japan.tar.gz’? y
[[email protected] ~]# tar -czf Japan.tar.gz  /tmp/Japan
tar: Removing leading `/' from member names
[[email protected] ~]# ls
boduo  Japan.tar.gz  lnmp-install.log  test.txt

tar

解释

命令名称:tar
命令所在路径:/bin/tar
执行权限:所有用户
功能描述:解包解压缩目录

语法

tar 选项[-zcf] [压缩后文件名] [被打包的目录]
    -x 解包
    -v 显示详细信息
    -f 指定解压文件
    -z 解压缩

示例

# 解压缩目录(解压到当前目录)
tar -zxvf Japan.tar.gz

[[email protected] ~]# ls
boduo  Japan.tar.gz  lnmp-install.log  test.txt
[[email protected] ~]# tar -zxvf Japan.tar.gz
tmp/Japan/
tmp/Japan/cangjing/
tmp/Japan/boduo/
tmp/Japan/longze/
[[email protected] ~]# ls

zip

解释

命令名称:zip
命令所在路径:/usr/bin/zip
执行权限:所有用户
功能描述:压缩文件或目录

语法

# 压缩后的文件格式为zip
zip 选项[-r] [压缩后文件名] [被压缩的文件或目录]
    -r 压缩目录

zip命令找不到

[[email protected] tmp]# zip aaa.zip test
-bash: zip: command not found

解决方法:
yum -y install zip

示例

# 压缩/tmp目录下的test文件为aaa.zip
zip aaa.zip test

[[email protected] tmp]# zip aaa.zip test
  adding: test/ (stored 0%)
[[email protected] tmp]# ls
aaa.zip
Aegis-<Guid(5A2C30A2-A87D-490A-9281-6765EDAD7CBA)>
hsperfdata_root
issue.hard
issue.soft
Japan
mysql.sock
php-cgi.sock
services
systemd-private-9255c5ee9ec84f5987c1d9ba485e177e-ntpd.service-eKcnmD
test
test.txt

# 压缩/tmp下的Japan目录
zip -r Japan.zip Japan

[[email protected] tmp]# zip -r Japan.zip Japan
  adding: Japan/ (stored 0%)
  adding: Japan/cangjing/ (stored 0%)
  adding: Japan/boduo/ (stored 0%)
  adding: Japan/longze/ (stored 0%)
[[email protected] tmp]# ls
aaa.zip
Aegis-<Guid(5A2C30A2-A87D-490A-9281-6765EDAD7CBA)>
hsperfdata_root
issue.hard
issue.soft
Japan
Japan.zip
mysql.sock
php-cgi.sock
services
systemd-private-9255c5ee9ec84f5987c1d9ba485e177e-ntpd.service-eKcnmD
test
test.txt

相对比gzip来说zip可以保留原文件,可以压缩目录

unzip

解释

命令名称:unzip
命令所在路径:/usr/bin/unzip
执行权限:所有用户
功能描述:解压.zip的压缩文件

语法

unzip [压缩文件]

示例

# 解压aaa.zip文件
unzip aaa.zip

[[email protected] tmp]# unzip aaa.zip
Archive:  aaa.zip
   creating: test/

bzip2

解释

命令名称:bzip2
命令所在路径:/usr/bin/bzip2
执行权限:所有用户
功能描述:压缩文件

语法

# 压缩后的文件格式为.bz2
bzip2 选项[-k] [文件]
    -k 差生压缩文件后保留原文件

示例

# 压缩文件
bzip2 -k boduo

[[email protected] tmp]# touch boduo
[[email protected] tmp]# bzip2 -k boduo
[[email protected] tmp]# ls
aaa.zip
Aegis-<Guid(5A2C30A2-A87D-490A-9281-6765EDAD7CBA)>
boduo
boduo.bz2
hsperfdata_root
issue.hard
issue.soft
Japan
Japan.zip
mysql.sock
php-cgi.sock
services
systemd-private-9255c5ee9ec84f5987c1d9ba485e177e-ntpd.service-eKcnmD
test
test.txt

# 将目录压缩为.bz2
tar -cjf Japan.tar.bz2 Japan

[[email protected] tmp]# tar -cjf Japan.tar.bz2 Japan
[[email protected] tmp]# ls
aaa.zip
Aegis-<Guid(5A2C30A2-A87D-490A-9281-6765EDAD7CBA)>
boduo
boduo.bz2
hsperfdata_root
issue.hard
issue.soft
Japan
Japan.tar.bz2
Japan.zip
mysql.sock
php-cgi.sock
services
systemd-private-9255c5ee9ec84f5987c1d9ba485e177e-ntpd.service-eKcnmD
test
test.txt

只能压缩文件

bunzip2

解释

命令名称:bunzip2
命令所在路径:/usr/bin/bunzip2
执行权限:所有用户
功能描述:解压缩

语法

bunzip2 选项[-k] [压缩文件名]
    -k 解压后保留原压缩文件

示例

# 解压文件
bunzip2

[[email protected] tmp]# bunzip2 boduo.bz2
bunzip2: Output file boduo already exists.
[[email protected] tmp]# rm boduo
rm: remove regular empty file ‘boduo’? y
[[email protected] tmp]# bunzip2 boduo.bz2
[[email protected] tmp]# ls
aaa.zip
Aegis-<Guid(5A2C30A2-A87D-490A-9281-6765EDAD7CBA)>
boduo
hsperfdata_root
issue.hard
issue.soft
Japan
Japan.tar.bz2
Japan.zip
mysql.sock
php-cgi.sock
services
systemd-private-9255c5ee9ec84f5987c1d9ba485e177e-ntpd.service-eKcnmD
test
test.txt

# 解压目录
tar -xjf Japan.tar.bz2

# 不会报文件夹已存在的冲突,应该会合并

原文地址:https://www.cnblogs.com/eternityz/p/12332908.html

时间: 2024-09-28 15:05:33

linux中压缩解压缩命令的相关文章

linux之压缩解压缩命令介绍

.zip是linux和windows通用的压缩文件类型语法:zip [选项] [压缩文件][源文件]实例:[[email protected] yang]# zip install.log.zip install.logadding: install.log (deflated 9%)unzip解压缩.zip压缩的文件语法:unzip [选项][压缩文件]实例:[[email protected] yang]# unzip install.log.zip -d haiArchive: insta

linux打包压缩解压缩命令大全

linux打包压缩和解压缩命令大全 linux压缩和解压缩命令大全 tar命令 解包:tar zxvf FileName.tar 打包:tar czvf FileName.tar DirName gz命令 解压1:gunzip FileName.gz 解压2:gzip -d FileName.gz 压缩:gzip FileName .tar.gz 和 .tgz 解压:tar zxvf FileName.tar.gz 压缩:tar zcvf FileName.tar.gz DirName 压缩多个

Linux下的常见压缩解压缩命令

Linux常见压缩解压缩命令 常见压缩文件扩展名 .Z compress 程序压缩的文件: .zip zip 程序压缩的文件: .gz gzip 程序压缩的文件: .bz2 bzip2 程序压缩的文件: .xz xz 程序压缩的文件: .tar tar 程序打包的数据,并没有压缩过: .tar.gz tar 程序打包的文件,其中并且经过 gzip 的压缩 .tar.bz2 tar 程序打包的文件,其中并且经过 bzip2 的压缩 .tar.xz tar 程序打包的文件,其中并且经过 xz 的压缩

Linux的压缩/解压缩文件处理 zip &amp; unzip

Linux的压缩/解压缩命令详解及实例 压缩服务器上当前目录的内容为xxx.zip文件 zip -r xxx.zip ./* 解压zip文件到当前目录 unzip filename.zip 另:有些服务器没有安装zip包执行不了zip命令,但基本上都可以用tar命令的,实例如下: tar -zcvf /home/zdzlibs.tar.gz /home/zdz/java/zdzlibs/ 原文地址:https://www.cnblogs.com/huzixia/p/10393289.html

linux中压缩与解压缩命令小结

linux中压缩与解压操作非常常见,其命令参数也非常的多,这里只介绍最经常用的带打包文件的几种压缩和解压方式和几个最常用的参数. 现在最常用的压缩和解压工具是gzip和bzip2,这两种工具不能相互解压对方压缩的文件.在linux中其实没有后缀名这一说法,但是为了方便用户解压文件时方便,所以在压缩的时候往往使用不同的后缀名以区分是使用的那个工具,一般使用gzip压缩的文件后缀名是.gz,用bzip2压缩的文件取名为.bz2,而打包文件一般使用tar工具,所以压缩后再打包的文件后缀名一般是.tar

Linux压缩/解压缩命令使用方法

compress 命令 [[email protected] ~]# compress [-dcr] 文件或目录 参数: -d :用来解压缩的参数 -r :可以连同目录下的文件也同时给予压缩[此参数慎用比较危险] -c :将压缩资料输出成为 standard output (输出到屏幕) 范例: 范例一:将 /etc/install.log 复制到 /tmp ,并加以压缩 [[email protected] ~]# cd /tmp [[email protected] tmp]# cp /et

Linux常用命令(第二版) --压缩解压缩命令

压缩解压缩命令: ----------.gz---------- 1.压缩 gzip[GNU zip]: /bin/gzip 格式: gzip 选项 [文件] #压缩文件,压缩后扩展名为.gz,Linux下最常用 #比较常见的软件源代码包的格式 特点: 1)只能压缩文件,不能压缩目录 2)不保留原文件 e.g. gzip newfile #原newfile删除 2.解压 1)gunzip[GNU zip]: /bin/gunzip 2)gzip -d #解压.gz E.g. gzip -d ne

linux 压缩解压缩命令

Linux下*.tar.gz文件解压缩命令1.压缩命令: 命令格式:tar -zcvf 压缩文件名.tar.gz 被压缩文件名 可先切换到当前目录下.压缩文件名和被压缩文件名都可加入路径. 2.解压缩命令: 命令格式:tar -zxvf 压缩文件名.tar.gz 解压缩后的文件只能放在当前的目录 linux 压缩解压缩命令

Linux,unix,cygwin,centeros下的tar压缩解压缩命令详解

Description 两只青蛙在网上相识了,它们聊得很开心,于是觉得很有必要见一面.它们很高兴地发现它们住在同一条纬度线上,于是它们约定各自朝西跳,直到碰面为止.可是它们出发之前忘记了一件很重要的事情,既没有问清楚对方的特征,也没有约定见面的具体位置.不过青蛙们都是很乐观的,它们觉得只要一直朝着某个方向跳下去,总能碰到对方的.但是除非这两只青蛙在同一时间跳到同一点上,不然是永远都不可能碰面的.为了帮助这两只乐观的青蛙,你被要求写一个程序来判断这两只青蛙是否能够碰面,会在什么时候碰面. 我们把这