LINUX02_概述、文件系统详解、vim、cd、ls、mkdir、touch、rm、cp、less、tail、head、find、locate、打包或解压tar(八)

简介: LINUX02_概述、文件系统详解、vim、cd、ls、mkdir、touch、rm、cp、less、tail、head、find、locate、打包或解压tar(八)

⑩②. 打包或解压tar 重点


  • ①. 打包为 tar 格式的文件:


  [root@localhost home]# tar -cvf hello.tar hello hello-hard hello-soft 
  hello
  hello-hard
  hello-soft
  [root@localhost home]# ls
  hello  hello-hard  hello-soft  hello.tar  test  test-soft
  [root@localhost home]# 


②. 压缩为 tar.gz 格式的文件:


  [root@localhost home]# tar -zcvf test.tar.gz test test-soft
  test/
  test-soft
  [root@localhost home]# ls
  hello  hello-hard  hello-soft  hello.tar  test  test-soft  test.tar.gz
  [root@localhost home]# 


③. 解打包 tar 格式的文件:


  [root@localhost home]# tar -xvf hello.tar 
  hello
  hello-hard
  hello-soft
  [root@localhost home]# ls
  hello  hello-hard  hello-soft  hello.tar  test.tar.gz
  [root@localhost home]# 


④. 解压缩 tar.gz 格式的文件:



  [root@localhost home]# tar -zxvf test.tar.gz 
   test/
   test-soft
   [root@localhost home]# ls
   hello  hello-hard  hello-soft  hello.tar  test  test-soft  test.tar.gz
   [root@localhost home]# 


微信图片_20220108193023.png


⑩③. 软链接 (快捷方式)


  • ①. 也成为符号链接,类似于windows里的快捷方式,有自己的数据块,主要存放了链接其他文件的路径
  • ②. 命令 ln –s 原文件或目录名 软链接名
  • ③. 查询:通过 ls -l 就可以查看,列表属性第1位是l,尾部会有位置指向


[root@izuf6ge69gbpc9ab8f8dvfz /]# ln -s /opt myOpt
[root@izuf6ge69gbpc9ab8f8dvfz /]# ll
total 68
lrwxrwxrwx.  1 root root     7 Aug 18  2017 bin -> usr/bin
dr-xr-xr-x.  4 root root  4096 Sep 12  2017 boot
drwxr-xr-x  19 root root  2960 Jul 22 20:30 dev
drwxr-xr-x. 83 root root 12288 Jul 23 00:47 etc
drwxr-xr-x.  4 root root  4096 May 30 09:54 home
lrwxrwxrwx.  1 root root     7 Aug 18  2017 lib -> usr/lib
lrwxrwxrwx.  1 root root     9 Aug 18  2017 lib64 -> usr/lib64
drwx------.  2 root root 16384 Aug 18  2017 lost+found
drwxr-xr-x.  2 root root  4096 Nov  5  2016 media
drwxr-xr-x.  2 root root  4096 Nov  5  2016 mnt
lrwxrwxrwx   1 root root     4 Jul 23 10:36 myOpt -> /opt
drwxr-xr-x.  2 root root  4096 Nov  5  2016 opt
dr-xr-xr-x  78 root root     0 Jul 22 20:30 proc
dr-xr-x---. 10 root root  4096 Jul 23 00:46 root
drwxr-xr-x  21 root root   620 Jul 23 00:47 run
lrwxrwxrwx.  1 root root     8 Aug 18  2017 sbin -> usr/sbin
drwxr-xr-x.  2 root root  4096 Nov  5  2016 srv
dr-xr-xr-x  13 root root     0 Jul 23 04:30 sys
drwxrwxrwt. 10 root root  4096 Jul 23 00:47 tmp
drwxr-xr-x. 14 root root  4096 Jul 22 23:38 usr
drwxr-xr-x. 19 root root  4096 Jul 23 04:30 var
[root@izuf6ge69gbpc9ab8f8dvfz /]# cd myOpt/
[root@izuf6ge69gbpc9ab8f8dvfz myOpt]# ll
total 0
[root@izuf6ge69gbpc9ab8f8dvfz myOpt]# cd /opt
total 0
相关文章
|
29天前
|
人工智能 Java 关系型数据库
Red Hat Enterprise Linux 9.5 发布下载,新增功能亮点概述
Red Hat Enterprise Linux 9.5 发布下载,新增功能亮点概述
71 4
Red Hat Enterprise Linux 9.5 发布下载,新增功能亮点概述
|
4月前
|
存储 监控 安全
在Linux中,⼀个EXT3的文件分区,当使用touch test.file命令创建⼀个新文件时报错,报错的信息是提示磁盘已满,但是采用df -h命令查看磁盘大小时,只使用了,60%的磁盘空间,为什么会出现这个情况?
在Linux中,⼀个EXT3的文件分区,当使用touch test.file命令创建⼀个新文件时报错,报错的信息是提示磁盘已满,但是采用df -h命令查看磁盘大小时,只使用了,60%的磁盘空间,为什么会出现这个情况?
|
7月前
|
存储 运维 关系型数据库
2024年最全ceph的功能组件和架构概述(2),Linux运维工程面试问题
2024年最全ceph的功能组件和架构概述(2),Linux运维工程面试问题
2024年最全ceph的功能组件和架构概述(2),Linux运维工程面试问题
|
3月前
|
Linux 测试技术 API
Linux PWM接口概述 【ChatGPT】
Linux PWM接口概述 【ChatGPT】
|
4月前
|
Linux
Linux命令行文档查看cat、less、more、head、tail和图片查看
Linux命令行文档查看cat、less、more、head、tail和图片查看
62 0
|
5月前
|
Linux 编译器 调度
【Linux】对共享库加载问题的深入理解——基本原理概述
【Linux】对共享库加载问题的深入理解——基本原理概述
|
5月前
|
Linux 调度
部署02-我们一般接触的是Mos和Wimdows这两款操作系统,很少接触到Linux,操作系统的概述,硬件是由计算机系统中由电子和机械,光电元件所组成的,CPU,内存,硬盘,软件是用户与计算机接口之间
部署02-我们一般接触的是Mos和Wimdows这两款操作系统,很少接触到Linux,操作系统的概述,硬件是由计算机系统中由电子和机械,光电元件所组成的,CPU,内存,硬盘,软件是用户与计算机接口之间
|
7月前
|
监控 Unix Linux
如何使用 Linux less 命令?
【4月更文挑战第25天】
379 1
如何使用 Linux less 命令?
|
7月前
|
Linux 开发者
【Linux】:文件查看 stat、cat、more、less、head、tail、uniq、wc
【Linux】:文件查看 stat、cat、more、less、head、tail、uniq、wc
105 1
|
7月前
|
Linux
Linux指令|more|less|head|tail|管道|sort|wc|uniq
Linux指令|more|less|head|tail|管道|sort|wc|uniq