2023年8月3日发(作者:)
linux命令11tar命令的使⽤tar⽂件是把⼏个⽂件的(或)⽬录集合在⼀个⽂件夹⾥,是创建备份和归档的最佳⼯具。[root@localhost ~]# tar --help⽤法: tar [选项...] [FILE]...GNU ‘tar’将许多⽂件⼀起保存⾄⼀个单独的磁带或磁盘归档,并能从归档中单独还原所需⽂件。⽰例tar -cf foo bar # 从⽂件 foo 和 bar 创建归档⽂件。tar -tvf # 详细列举归档⽂件 中的所有⽂件。tar -xf # 展开归档⽂件 中的所有⽂件。
[root@localhost ~]# tsr cvf /boot/grub2/ 打包 不压缩c create 创建v 详细f filename
file命令作⽤:确定⽂件类型语法:file ⽂件名 注:linux系统不根据后缀名识别⽂件类型,⽤file命令查看⽂件的类型[root@localhost ~]# file /etc/passwd/etc/passwd: ASCII text例:把两个⽬录或⽬标+⽂件打包成⼀个软件包[root@localhost ~]# tar cvf /boot/ /etc/passwd
不解包,查看tar中的内容[root@localhost ~]# tar tvf 解包:[root@localhost ~]# tar xvf 解压指定路径:[root@localhost ~]# tar xvf -C /opt/du -sh ⽂件名或⽬录 查看⽂件或⽬录⼤⼩
归档+压缩gzip bzip2 zip tar⼀、压缩格式:gz bz2 xz zip Z格式(⽂件名格式):压缩名. 或 .tgz[root@localhost ~]# tar zvcf /boot/grub2/ 解压[root@localhost ~]# tar zxvf /opt/
另⼀种压缩⽅法:bz2格式(⽂件名格式):.2[root@localhost ~]# tar jvcf 2 /boot/grub2/解压[root@localhost ~]# tar jxvf /opt/
zip 软件包解压缩命令 zip是压缩程序,unzip是解压程序压缩⽂件[root@localhost ~]# zip /etc/passwdadding: etc/passwd (deflated 61%)-r 压缩⽬录格式“zip”选项 名称 源[root@localhost ~]# zip -r /boot/grub2/
解压zip[root@localhost ~]#unzip -d /opt/ -d 指定路径
补充不常⽤:压缩命令:gzip bzip2 xz语法格式:gzip ⽂件 bzip2 ⽂件 xz ⽂件解压: gzip -d ⽂件 bzip2 -d ⽂件 xz -d ⽂件 或 unxz ⽂件不解压的情况查看压缩⽂件内容分别⽤:zcat bzcat xzcat
发布者:admin,转转请注明出处:http://www.yc00.com/news/1691037805a492390.html
评论列表(0条)