linux命令之tar 解压 压缩

简介: 本篇内容记录了有关tar 解压 压缩的相关操作。

tar


tar(全称:tape archive )命令用于备份文件。tar 是用来创建或者还原备份文件的工具程序,它可以加入,解开备份文件内的文件。tar linux说明


  • 语法


tar [主选项 + 辅选项] 文件或目录


使用该命令时,主选项必须有,它告诉tar要做什么事情,辅选项是辅助使用的,可以选用。


主选项:一条命令下面的5个参数只能有一个,不能同时存在

-c: --create 新建一个压缩文档,即打包

-x: --extract,--get解压文件

-t: --list,查看压缩文档里的所有内容

-r:--append 向压缩文档里追加文件

-u:--update 更新原压缩包中的文件


辅助选项:


-z:是否同时具有gzip的属性?即是否需要用gzip压缩或解压?一般格式为xxx.tar.gz或xx.tgz

-j:是否同时具有bzip2的属性?即是否需要用bzip2压缩或解压?一般格式为xx.tar.bz2

-v:显示操作过程!这个参数很常用

-f:使用文档名,注意,在f之后要立即接文档名,不要再加其他参数!

-C:切换到指定目录

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


  • 实例


  1. 打包


$ tar -cvf img.tar img1 img2


  1. 不解压查看
$ tar -tvf img.tar


  1. 解压


$ tar -xvf ./img.tar


  1. 只解压某个目录


$ tar -xvf ./img.tar img1


  1. 更新压缩包


给img1文件下新建一个文件img3.txt,然后更新img.tar


$ tar -cvf img.tar img1 img2
# 给img1增加了一张照片,现在用下面命令更新img.tar
$ tar -uvf img.tar img1


  1. 追加


$ tar -cf img.tar img1 img2
# img.tar里追加一个文件夹img3
$ tar -rf img.tar img3


  1. -C 参数


-C 参数非常有用,改变文件目录,多层级时使用。 -C, --directory=DIR ( change to directory DIR )


使用了-C 参数改变目录为 -C 后面的目录,不管是在打包还是解压都很有用。


语法:tar temp.tar -C fileDirfile


$ cd temp
$ ls
img1  img2  img3
$ tar -cvf img.tar temp/*
# 这样打包会将temp目录也打包进去,使用下面带有-C参数的命令可以去掉路径信息
$ tar -cvf img.tar -C temp .


解压 img.tar 到当前目录下的 temp 目录


$ tar -xvf img.tar -C temp


附录:


$ tar -cvf image.tar /home/usr/image
tar: Removing leading '/' from members names
/home/usr/image


该命令可以将/home/usr/image文件打包到当前目录下的image.tar中,需要注意的是:使用绝对路径标识的源文件,在用tar命令压缩后,文件名连同绝对路径(这里是home/usr/,根目录'/'被自动去掉了)一并被压缩进来。使用tar命令解压缩后会出现以下情况:


$ tar -xvf image.tar


解压缩后的文件名不是想象中的image,而是home/usr/image。


$ tar -cvf image.tar -C /home/usr/ image


该命令中的-C dir参数,将tar的工作目录从当前目录改为/home/usr/,将image文件(不带绝对路径)压缩到image.tar中。注意:-C dir参数的作用在于改变工作目录,其有效期为该命令中下一次-C dir参数之前。


使用tar的-C dir参数,同样可以做到在当前目录/root下将文件解压缩到其他目录,例如:


$ tar -xvf image.tar -C /home/user


而tar不用-C dir参数时是无法做到的:


$ tar -xvf image.tar /root
tar: /tmp/file: Not found in archive
tar: Error exit delayed from previous errors
相关文章
|
20天前
|
Linux Shell
Linux 10 个“who”命令示例
Linux 10 个“who”命令示例
49 14
Linux 10 个“who”命令示例
|
9天前
|
Ubuntu Linux
Linux 各发行版安装 ping 命令指南
如何在不同 Linux 发行版(Ubuntu/Debian、CentOS/RHEL/Fedora、Arch Linux、openSUSE、Alpine Linux)上安装 `ping` 命令,详细列出各发行版的安装步骤和验证方法,帮助系统管理员和网络工程师快速排查网络问题。
78 20
|
9天前
|
网络协议 Linux 应用服务中间件
kali的常用命令汇总Linux
kali的常用命令汇总linux
34 7
|
29天前
|
Linux 数据库
Linux中第一次使用locate命令报错?????
在Linux CentOS7系统中,使用`locate`命令时出现“command not found”错误,原因是缺少`mlocate`包。解决方法是通过`yum install mlocate -y`或`apt-get install mlocate`安装该包,并执行`updatedb`更新数据库以解决后续的“can not stat”错误。
34 9
|
27天前
|
监控 网络协议 Linux
Linux netstat 命令详解
Linux netstat 命令详解
|
1月前
|
运维 监控 网络协议
运维工程师日常工作中最常用的20个Linux命令,涵盖文件操作、目录管理、权限设置、系统监控等方面
本文介绍了运维工程师日常工作中最常用的20个Linux命令,涵盖文件操作、目录管理、权限设置、系统监控等方面,旨在帮助读者提高工作效率。从基本的文件查看与编辑,到高级的网络配置与安全管理,这些命令是运维工作中的必备工具。
129 3
|
1月前
|
Linux
在 Linux 系统中,`find` 命令
在 Linux 系统中,`find` 命令
38 1
|
7月前
|
运维 Linux
Linux命令(66)之tar
Linux命令(66)之tar
93 6
|
7月前
|
Linux
Linux命令之tar
Linux命令之tar
56 3
|
7月前
|
算法 Linux
【Linux】常用的压缩解压缩命令之tar命令
【Linux】常用的压缩解压缩命令之tar命令
479 0