博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
TAR 命令
阅读量:5105 次
发布时间:2019-06-13

本文共 1434 字,大约阅读时间需要 4 分钟。

Creating an archive using tar command(创建压缩文件)

Create linux tar gz (Gzip) archive :

tar -czvf myarchive.tgz mydirectory/

tar -czvf myarchive.tar.gz mydirectory/

We use the -t option to create an linux tar archive

  • c – Creates a new .tar archive file.
  • v – Verbosely(啰嗦地) show the .tar file progress.
  • f – File name type of the archive file.
  • To create a compressed gzip archive file we use the option as z.

Note:that .tgz is the same thing as .tar.gz.

Create linux tar archive (withouth compresion)

tar -cvf myarchive.tar mydirectory/

Create linux tar.bz2 archive

tar -cvfj myarchive.tar.bz2 mydirectory/

tar -cvfj myarchive.tb2 mydirectory/

tar -cvfj myarchive.tbz mydirectory/

Note:To create highly compressed tar file we use option as j(filter the archive through bzip2).

Note: tar.bz2 and tbz is similar as tb2

Extracting linux tar archive(解压文件):

Extract linux tar gz (Gzip) archive

tar -xvzf mystuff.tgz

To untar or extract a tar file, just issue following command using option x (extract).

Extract linux simple tar archive

tar -xvf mystuff.tar

Exterct linux simple tar.bz2 archive

tar -xvjf mystuff.tar.bx2

Extract linux tar archive to speciefied directory(文件到目标目录下)

tar -xvzf filename.tar.gz -C /desired/path

-C directory file

Reference media:

[1]http://linuxbasiccommands.wordpress.com/2008/04/04/linux-tar-command/

[2]http://www.tecmint.com/18-tar-command-examples-in-linux/

 

转载于:https://www.cnblogs.com/cnguoyu123/p/3704549.html

你可能感兴趣的文章
Ice Cream Tower Gym - 101194D
查看>>
bzoj1057[ZJOI2007]棋盘制作
查看>>
jsp 跳转
查看>>
使用图形界面安装RHEL5
查看>>
HBuilderX生成本地打包App资源
查看>>
Construct Binary Tree from Preorder and Inorder Traversal
查看>>
mysql用法笔记
查看>>
POJ2135 Farm Tour
查看>>
Linux添加防火墙、iptables的安装和配置(亲测)
查看>>
Openjudge-计算概论(A)-DNA排序
查看>>
构造函数的执行顺序
查看>>
使一个Makefile同时生成多个可执行文件
查看>>
LintCode 685. 数据流中第一个唯一的数字
查看>>
Channel 详解
查看>>
牛客网NOIP赛前集训营-普及组(第二场)
查看>>
mac系统U盘装机 一个被系统坑过的路人
查看>>
jQuery load()方法用法集锦!
查看>>
随手记一次利用开源zxing生成带嵌入logo的二维码图片
查看>>
美容实用小知识
查看>>
hdu 1247 Hat’s Words(字典树)
查看>>