1、简介
tar
( Tape Archive )是一个用于创建和操作归档文件的命令行工具。它最初设计用于在磁带上存储文件,但现在广泛用于创建压缩包,以便于文件的备份、分发和存储。tar
可以与压缩工具(如 gzip
、bzip2
和 xz
)结合使用,以创建压缩的归档文件。
2、基本用法
tar
的基本语法如下:
tar [选项] [归档文件] [文件或目录]
-
选项
:控制tar
的行为。 -
归档文件
:要创建或提取的归档文件。 -
文件或目录
:要归档的文件或目录。
3、常用选项
-
-c
:创建新的归档文件。 -
-x
:从归档文件中提取文件。 -
-t
:列出归档文件的内容。 -
-v
:显示详细信息。 -
-f
:指定归档文件的名称。 -
-z
:使用gzip
压缩或解压缩。 -
-j
:使用bzip2
压缩或解压缩。 -
-J
:使用xz
压缩或解压缩。 -
-C
:指定提取文件的目标目录。
4、实战示例
一、 基本用法
1、 创建归档文件
[root@localhost ~]# ls -l ### 列出当前目录的文件
[root@localhost ~]# tar -cvf archive.tar /root/file1/ ### 创建一个名为 archive1.tar 的归档文件,包含 /root/file1/ 目录下的所有文件和子目录。
[root@localhost ~]# ls -l ### 列出当前目录的文件,确认无误
2、 列出归档文件的内容
[root@localhost ~]# ls -l ### 列出当前目录的文件
[root@localhost ~]# tar -cvf archive.tar /root/file1/ ### 创建一个名为 archive1.tar 的归档文件,包含 /root/file1/ 目录下的所有文件和子目录。
[root@localhost ~]# ls -l ### 列出当前目录的文件
[root@localhost ~]# tar -tvf archive1.tar ### 列出 archive1.tar 归档文件的内容,确认无误
3、 提取归档文件
[root@localhost ~]# ls -l ### 列出当前目录的文件
[root@localhost ~]# tar -tvf archive1.tar ### 列出 archive1.tar 归档文件的内容
[root@localhost ~]# ls -l ### 列出当前目录的文件
[root@localhost ~]# tar -xvf archive1.tar ### 从 archive1.tar 归档文件中提取所有文件。
[root@localhost ~]# ls -l ### 列出当前目录的文件
[root@localhost ~]# ls -l -R root/ ### 递归列出root/目录下的文件,确认无误
4、 创建 gzip 压缩的归档文件
[root@localhost ~]# ls -l ### 列出当前目录的文件
[root@localhost ~]# tar -czvf archive1.tar.gz root/ ### 创建一个名为 archive1.tar.gz 的 gzip 压缩归档文件,包含 root/ 目录下的所有文件和子目录。
[root@localhost ~]# ls -l ### 列出当前目录的文件
[root@localhost ~]# tar -tvf archive1.tar.gz ### 列出 archive1.tar.gz 归档文件的内容,确认无误
5、 提取 gzip 压缩的归档文件
[root@localhost ~]# ls -l ### 列出当前目录的文件
[root@localhost ~]# tar -xzvf archive1.tar.gz ### 从 archive1.tar.gz 归档文件中提取所有文件。
[root@localhost ~]# ls -l ### 列出当前目录的文件
[root@localhost ~]# ls -l -R root/ ### 递归列出root/目录下的文件,确认无误
6、 创建 bzip2 压缩的归档文件
[root@localhost ~]# ls -l ### 列出当前目录的文件
[root@localhost ~]# tar -cjvf archive1.tar.bz2 root/ ### 创建一个名为 archive1.tar.bz2 的 bzip2 压缩归档文件,包含 root/ 目录下的所有文件和子目录。
[root@localhost ~]# ls -l ### 列出当前目录的文件
[root@localhost ~]# tar -tvf archive1.tar.bz2 ### 列出 archive1.tar.bz2 归档文件的内容,确认无误
7、 指定提取目录
[root@localhost ~]# ls -l ### 列出当前目录的文件
[root@localhost ~]# tar -zxvf archive1.tar.gz -C /tmp/ ### 将 archive1.tar,gz 归档文件中的内容提取到 /tmp/ 目录。
[root@localhost ~]# ls -l /tmp/ ### 列出/tmp/目录的文件
[root@localhost ~]# ls -l -R /tmp/root/ ### 递归列出/tmp/root目录的文件,确认无误
原文始发于微信公众号(奶嘴很忙):tar – 压缩文件管理工具
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/303638.html