美文网首页
Linux 文件的归档和打包

Linux 文件的归档和打包

作者: Sirius_KP | 来源:发表于2018-09-10 17:37 被阅读0次

tar的归档和压缩文件

用法:tar [OPTION...] [FILE]...

参数:

-c create创建文件

-x -extract [ˈekstrækt]提取解压还原文件

-v --verbose显示执行详细过程

-f --file指定备份文件

-t --list列出压缩包中包括哪些文件,不解包,查看包中的内容

-C (大写)--directory指定解压位置

归档

[root@localhost ~]  tar -cvf etc.tar /etc

归档多个文件或者目录

[root@localhost ~]  tar -cvf xx.tar /etc  /boot

解压

[root@localhost ~]  tar -xvf etc.tar 

指定解压位置 

[root@localhost ~]  tar -xvf etc.tar  -C /opt/test

不解包查看

[root@localhost ~]  tar -tf etc.tar 

 tar 归档+压缩

gz的压缩方式

[root@localhost ~]  tar -zcvf xxx.tar.gz  /etc

bz2的压缩归档

[root@localhost ~]  tar -jcvf xxx.tar.bz2  /etc

xz的压缩归档

[root@localhost ~]  tar -Jcvf xxx.tar.xz  /etc 

tar解压缩

[root@localhost ~]  tar -xf xxx.tar.gz

tar 的添加

 [root@localhost ~]  tar rf a.tar hosts

tar 删除

 [root@localhost ~]  tar --delete -f a.tar a.txt

zip管理压缩文件

zip软件包解压缩命令:

zip是压缩程序,unzip是解压程序。

例1:压缩文件:

[root@localhost  ~]# zip a.zip /etc/passwd 

例2:将所有.jpg的文件压缩成一个zip包

[root@localhost  ~]# zip all.zip *.jpg  例3:压缩一个目录

[root@localhost  ~]# zip -r grub.zip /boot/grub   #一般不用

解压缩:

[root@localhost  ~]# unzip grub.zip

[root@localhost  ~]# unzip grub.zip -d /opt/  #  -d  解压到指定的目标/opt

file命令

作用: file - determine file type  #确定文件类型

注:linux系统不根据后缀名识别文件类型

用file命令查看文件的类型。

[root@localhost  opt]# file /etc/passwd

/etc/passwd: ASCII text

[root@localhost  opt]# file /etc

/etc: directory

[root@localhost  opt]# file /dev/sda

/dev/sda: block special

按一定规则排序查看文件

查看文件:

[root@Sirius_KP ~]# ls -ltr    按时间排序  t 表示时间,  -r 从小到大,不加r参数由大到小

[root@Sirius_KP ~]# ls -lSr  按大小排序  -r 从小到大  

[root@Sirius_KP ~]# ls -lSrh  按大小排序  -r 从小到大  ,加-h 参数,看大小,更清楚

[root@Sirius_KP ~]# ls -lS   从大到小

查看目录:

[root@Sirius_KP ~]# du -sh /etc看某个目录大小

查看分区大小:

[root@Sirius_KP ~]# df -h  可以快速查看磁盘大小的存储空间

排序:处理大量数据时会用到的命令sort

例1:默认按字母规则进行排序

[root@Sirius_KP ~]# cat  /etc/passwd | sort | more

例2: 按数据排序

[root@Sirius_KP ~]# vim file2   #每行随意写一些数字

例2: 按数据排序,默认从小到大

2

23

231

[root@Sirius_KP mnt]# sort -n file2  #-n默认从小到大  

[root@Sirius_KP 63 ~]# sort  -r file2   #-r 反序排序(升序变成降序进行排序) 从大小到

相关文章

  • Linux 文件的归档和打包

    tar的归档和压缩文件 用法:tar [OPTION...] [FILE]... 参数: -c create创建文...

  • linux 压缩&解压缩 tar.gz

    1、多个文件归档打包 2、归档打包并压缩一步完成 3、将(归档)文件压缩 4、将归档文件拆包 5、将归档压缩文件直...

  • Linux常用命令(二)

    文件归档、打包压缩命令:rar 缺省仅仅打包归档,不进行文件压缩 常用选项参数: "-c"创建归档文件包 "-x"...

  • Linux的文件的打包(tar方法)

    Linux的文件的打包(tar方法) tar -c: 建立压缩档案-x:解压-t:查看内容-r:向压缩归档文件末尾...

  • 使用tar 命令进行文件的归档和压缩

    归档和压缩文件 归档和压缩文件的好处:节约硬盘的资源 ,加快文件传输速率 tar 命令 作用:打包、压缩文件 这幅...

  • 文件压缩

    打包和压缩 打包也就做归档,指的是一个文件或目录的集合.而这个集合被存储在一个文件中.归档的文件并没有经过压缩,占...

  • Linux打包压缩备份

    tar文件 / 目录打包 ( 归档 ) -f: 这个选项是一定要用的 , 表示使用归档文件 -c: 新建一个打包文...

  • Linux学习笔记(二)---Linux打包(归档)和压缩详解

    归档和压缩所各自代表的含义。归档,也称为打包,指的是一个文件或目录的集合,而这个集合被存储在一个文件中。归档文件没...

  • 5.linux常用指令3

    tar :打包(归档) 打包文件后缀为 .tar 格式:tar [option] filename Option ...

  • 史上最简单Yii 安装过程(详细图解)

    linux通过归档文件安装Yii 1. 从 yiiframework.com 下载归档文件。 基础模板名字是ba...

网友评论

      本文标题:Linux 文件的归档和打包

      本文链接:https://www.haomeiwen.com/subject/yrzsgftx.html