Linux常见指令

时间:2024-01-22 12:28:53

        1、复制粘贴

        1、复制:ctrl + insert (有的insert需要搭配fn来使用)。

        2、粘贴:shift + insert。

        ctrl + c 和 ctrl + v 是不行的。

        2、ls

        语法: ls  [选项]  [目录或文件].

        功能:对于目录:该命令列出该目录下的所有子目录和文件。

                   对于文件:该命令列出文件名和其他信息。

        2、1 -a选项

        列出目录下的所有文件,包括以 . 开头的隐含文件

[root@hcss-ecs-4716 trail.txt]# ls -a
.  ..  test1.txt

        2、2 -d选项

        将目录像文件一样显示,而不是显示其下的文件。

[root@hcss-ecs-4716 trail.txt]# ls -d
.

        2、3 -l选项

        列出文件的详细信息。

[root@hcss-ecs-4716 trail.txt]# ls -l
total 0
-rw-rw-r-- 1 root root 0 Jan 18 13:16 test1.txt

        2、4常用组合

        2、4、1 单独的ls

        只显示文件名属性。

[root@hcss-ecs-4716 trail.txt]# ls
test1.txt

        2、4、2 ll

        ll 等于 ls -l,这是一个缩写。

[root@hcss-ecs-4716 trail.txt]# ll
total 0
-rw-rw-r-- 1 root root 0 Jan 18 13:16 test1.txt

        2、4、3 ls -la

        显示文件详细属性,包括隐含文件。

[root@hcss-ecs-4716 trail.txt]# ls -la
total 8
drwxrwxr-x 2 root root 4096 Jan 18 13:16 .
drwxr-xr-x 3 root root 4096 Jan 18 13:15 ..
-rw-rw-r-- 1 root root    0 Jan 18 13:16 test1.txt

        3、pwd

        语法:pwd。

        显示当前所处路径。

[root@hcss-ecs-4716 trail.txt]# pwd
/root/111/trail.txt

        4、cd

        语法:cd  目录名

        功能:进入指定目录。

        Linux系统下是一个树状结构,所以每一个文件或目录都只有一个唯一的绝对路径。

        4、1 cd ..

        进入上级目录

[root@hcss-ecs-4716 trail.txt]# pwd
/root/111/trail.txt
[root@hcss-ecs-4716 trail.txt]# cd ..
[root@hcss-ecs-4716 111]# pwd
/root/111

        4、2 cd 绝对路径/相对路径

        进入指定目录/相对目录。

        4、3 cd ~

        进入家用目录

[root@hcss-ecs-4716 trail.txt]# pwd
/root/111/trail.txt
[root@hcss-ecs-4716 trail.txt]# cd ~
[root@hcss-ecs-4716 ~]# pwd
/root

        4、4 cd -

        进入最近访问目录

[root@hcss-ecs-4716 111]# cd -
/root/111/trail.txt
[root@hcss-ecs-4716 trail.txt]# cd -
/root/111

        5、 touch

        语法: touch  [选项]  文件名

        功能:1、更改文档或目录的日期时间,包括存取时间和更改时间。

                   2、新建一个不存在的文件

[root@hcss-ecs-4716 trail.txt]# touch test2.txt
[root@hcss-ecs-4716 trail.txt]# ll
total 0
-rw-rw-r-- 1 root root 0 Jan 18 13:16 test1.txt
-rw-rw-r-- 1 root root 0 Jan 18 13:35 test2.txt

        6、 mkdir(重要)

        语法: mkdir  [选项]   dirname

        功能:在当前目录下,创建一个名为 “ dirname ” 的目录。

        6、1 -p选项

        递归建立多个目录。mkdir -p  xxx/xxx/xxx,若该路径上的某些目录不存在,则系统自动建立起这些目录,并最终建立起想要的目录。

[root@hcss-ecs-4716 trail.txt]# ll
total 0
-rw-rw-r-- 1 root root 0 Jan 18 13:16 test1.txt
-rw-rw-r-- 1 root root 0 Jan 18 13:35 test2.txt
[root@hcss-ecs-4716 trail.txt]# mkdir -p test3.txt/test3-1.txt
[root@hcss-ecs-4716 trail.txt]# ll
total 4
-rw-rw-r-- 1 root root    0 Jan 18 13:16 test1.txt
-rw-rw-r-- 1 root root    0 Jan 18 13:35 test2.txt
drwxrwxr-x 3 root root 4096 Jan 18 13:39 test3.txt
[root@hcss-ecs-4716 trail.txt]# ls -l test3.txt/
total 4
drwxrwxr-x 2 root root 4096 Jan 18 13:39 test3-1.txt

        7、rmdir && rm(重要)

        7、1 rmdir

        语法:rmdir  [-p]  [dirname]

        功能:rmdir和mkdir是相对的命令,rmdir是删除目录。只能删除空目录

        适用权限:具有当前目录操作权限的所有使用者。

[root@hcss-ecs-4716 trail.txt]# ll
total 8
-rw-rw-r-- 1 root root    0 Jan 18 13:16 test1.txt
-rw-rw-r-- 1 root root    0 Jan 18 13:35 test2.txt
drwxrwxr-x 3 root root 4096 Jan 18 13:39 test3.txt
drwxrwxr-x 2 root root 4096 Jan 18 13:45 test4.txt
[root@hcss-ecs-4716 trail.txt]# rmdir test3.txt
rmdir: failed to remove ‘test3.txt’: Directory not empty
[root@hcss-ecs-4716 trail.txt]# rmdir test4.txt
[root@hcss-ecs-4716 trail.txt]# ll
total 4
-rw-rw-r-- 1 root root    0 Jan 18 13:16 test1.txt
-rw-rw-r-- 1 root root    0 Jan 18 13:35 test2.txt
drwxrwxr-x 3 root root 4096 Jan 18 13:39 test3.txt

        7、1、1 -p选项

        如果空子目录删除后,它的父目录也变为空,则连同父目录一同删掉。

        7、2 rm

        语法:rm  [选项]   [dirname/dir]

        功能:可以同时删除目录或文件。

        适用权限:所有使用者。

        7、2、1 -f选项

        即使文件属性只为读(保护权限),仍然可以删。

        7、2、2 -i选项

        删除前,逐一询问是否删除。

        7、2、3 -r选项

        删除该目录及其下所有文件。(递归删除)

[root@hcss-ecs-4716 trail.txt]# ll
total 8
-rw-rw-r-- 1 root root    0 Jan 18 13:16 test1.txt
-rw-rw-r-- 1 root root    0 Jan 18 13:35 test2.txt
drwxrwxr-x 3 root root 4096 Jan 18 13:39 test3.txt
drwxrwxr-x 3 root root 4096 Jan 18 13:49 test4.txt
[root@hcss-ecs-4716 trail.txt]# ls -l test4.txt
total 4
drwxrwxr-x 2 root root 4096 Jan 18 13:49 test4-1.txt
-rw-rw-r-- 1 root root    0 Jan 18 13:49 test4-2.txt
-rw-rw-r-- 1 root root    0 Jan 18 13:49 test4-3.txt
-rw-rw-r-- 1 root root    0 Jan 18 13:49 test4-4.txt
[root@hcss-ecs-4716 trail.txt]# rm -rf test4.txt
[root@hcss-ecs-4716 trail.txt]# ll
total 4
-rw-rw-r-- 1 root root    0 Jan 18 13:16 test1.txt
-rw-rw-r-- 1 root root    0 Jan 18 13:35 test2.txt
drwxrwxr-x 3 root root 4096 Jan 18 13:39 test3.txt

        注意:删除之前一定得确保需要删!!!宁可备份,不可删除!!!

        8、man(重要)

        语法:man  [选项]  命令

        功能:Linux的命令有很多参数,我们不可能全记住,我们可以通过查看联机手册获取帮助。

        常用选项 :-k 根据关键字搜索联机帮助

                          num 只在第num章节找

                         -a 将所有章节的都显示出来,比如 man printf 它缺省从第一章开始搜索,知道就停止,用a选项,当按 下q退出,他会继续往后面搜索,直到所有章节都搜索完毕。

        8、1手册

        解释一下,手册分为8章

        1 是普通的命令

        2 是系统调用,如open,write之类的(通过这个,至少可以很方便的查到调用这个函数,需要加什么头文 件)

        3 是库函数,如printf,fread

        4是特殊文件,也就是/dev下的各种设备文件

        5 是指文件的格式,比如passwd, 就会说明这个文件中各个字段的含义

        6 是给游戏留的,由各个游戏自己定义

        7 是附件还有一些变量,比如向environ这种全局变量在这里就有说明

        8 是系统管理用的命令,这些命令只能由root使用,如ifconfig

        9、cp(重要)

        语法:cp [选项] 源文件或目录 目标文件或目录

        功能复制文件或目录。复制不是移动。

        说明: cp指令用于复制文件或目录,如同时指定两个以上的文件或目录,且最后的目的地是一个已经存在的目录, 则它会把前面指定的所有文件或目录复制到此目录中。若同时指定多个文件或目录,而最后的目的地并非一个已存 在的目录,则会出现错误信息。

        9、2常用选项 -f -i -r

        -f 或 --force 强行复制文件或目录, 不论目的文件或目录是否已经存在

        -i 或 --interactive 覆盖文件之前先询问用户

        -r递归处理,将指定目录下的文件与子目录一并处理。若源文件或目录的形态,不属于目录或符号链 接,则一律视为普通文件处理

[root@hcss-ecs-4716 trail.txt]# ll
total 12
drwxrwxr-x 2 root root 4096 Jan 18 14:07 des
drwxrwxr-x 3 root root 4096 Jan 18 14:08 src
-rw-rw-r-- 1 root root    0 Jan 18 13:16 test1.txt
-rw-rw-r-- 1 root root    0 Jan 18 13:35 test2.txt
drwxrwxr-x 3 root root 4096 Jan 18 13:39 test3.txt
[root@hcss-ecs-4716 trail.txt]# ls -l des/
total 0
[root@hcss-ecs-4716 trail.txt]# ls -l src/
total 4
drwxrwxr-x 2 root root 4096 Jan 18 14:07 log1.txt
-rw-rw-r-- 1 root root    0 Jan 18 14:07 log2.txt
-rw-rw-r-- 1 root root    0 Jan 18 14:08 log3.exe
[root@hcss-ecs-4716 trail.txt]# cp -rf src des
[root@hcss-ecs-4716 trail.txt]# ls -l des
total 4
drwxrwxr-x 3 root root 4096 Jan 18 14:08 src

        10、mv(重要)

        mv命令是move的缩写,可以用来移动文件或者将文件改名(move (rename) files),是Linux系统下常用的命令,经常用来备份文件或者目录。

        语法: mv [选项] 源文件或目录 目标文件或目录

        功能: 1. 视mv命令中第二个参数类型的不同(是目标文件还是目标目录),mv命令将文件重命名或将其移至一个新的目录中。

                  2. 当第二个参数类型是文件时,mv命令完成文件重命名,此时,源文件只能有一个(也可以是源目录名),它将所给的源文件或目录重命名为给定的目标文件名。

                  3. 当第二个参数是已存在的目录名称时,源文件或目录参数可以有多个,mv命令将各参数指定的源文件均移至目标目录中。

        10、1常用选项 -f  -i

        -f :force 强制的意思,如果目标文件已经存在,不会询问而直接覆盖

        -i :若目标文件 (destination) 已经存在时,就会询问是否覆盖!

        10、2作用

        10、2、1 mv xxx yyy(重命名)

        将xxx重命名为yyy

[root@hcss-ecs-4716 test]# pwd
/root/111/trail.txt/test
[root@hcss-ecs-4716 test]# ll
total 4
drwxrwxr-x 2 root root 4096 Jan 18 14:18 xxx
[root@hcss-ecs-4716 test]# mv xxx yyy
[root@hcss-ecs-4716 test]# ll
total 4
drwxrwxr-x 2 root root 4096 Jan 18 14:18 yyy

        10、2、2 mv xxx yyy(将xxx移动到yyy目录里面)

[root@hcss-ecs-4716 test]# ll
total 8
drwxrwxr-x 3 root root 4096 Jan 18 14:19 xxx
drwxrwxr-x 2 root root 4096 Jan 18 14:19 yyy
[root@hcss-ecs-4716 test]# ls -l yyy
total 0
[root@hcss-ecs-4716 test]# mv xxx yyy
[root@hcss-ecs-4716 test]# ll
total 4
drwxrwxr-x 3 root root 4096 Jan 18 14:20 yyy
[root@hcss-ecs-4716 test]# ls -l yyy
total 4
drwxrwxr-x 3 root root 4096 Jan 18 14:19 xxx

        10、2、3 mv xxx yyy/newname (移动并命名)

[root@hcss-ecs-4716 test]# ll
total 8
drwxrwxr-x 3 root root 4096 Jan 18 14:22 xxx
drwxrwxr-x 2 root root 4096 Jan 18 14:22 yyy
[root@hcss-ecs-4716 test]# ls -l xxx
total 4
drwxrwxr-x 2 root root 4096 Jan 18 14:22 xxx1
-rw-rw-r-- 1 root root    0 Jan 18 14:22 xxx2
[root@hcss-ecs-4716 test]# mv xxx yyy/newxxx
[root@hcss-ecs-4716 test]# ll
total 4
drwxrwxr-x 3 root root 4096 Jan 18 14:23 yyy
[root@hcss-ecs-4716 test]# ls -l yyy
total 4
drwxrwxr-x 3 root root 4096 Jan 18 14:22 newxxx
[root@hcss-ecs-4716 test]# ls -l yyy/newxxx
total 4
drwxrwxr-x 2 root root 4096 Jan 18 14:22 xxx1
-rw-rw-r-- 1 root root    0 Jan 18 14:22 xxx2

        11、cat

        语法:cat [选项] [文件]

        功能: 查看目标文件的内容

[root@hcss-ecs-4716 test]# ll
total 8
-rw-rw-r-- 1 root root   84 Jan 18 14:28 demo1.txt
drwxrwxr-x 3 root root 4096 Jan 18 14:23 yyy
[root@hcss-ecs-4716 test]# cat demo1.txt
           
hello world
hello world
           
           
hello Linux
hello Linux

        11、1 -b选项

        -b 对非空输出行编号

[root@hcss-ecs-4716 test]# ll
total 8
-rw-rw-r-- 1 root root   38 Jan 18 14:32 demo1.txt
drwxrwxr-x 3 root root 4096 Jan 18 14:23 yyy
[root@hcss-ecs-4716 test]# cat -b demo1.txt
     1	hello world
     2	hello world


     3	hello Linux

        11、2 -n选项        

        -n 对输出的所有行编号

[root@hcss-ecs-4716 test]# cat -n demo1.txt
     1	hello world
     2	hello world
     3	
     4	
     5	hello Linux

        11、3 -s选项       

        -s 不输出多行空行,即多行空行只输出一行。

[root@hcss-ecs-4716 test]# cat -s demo1.txt
hello world
hello world

hello Linux

        11、4 tac --- cat

        很奇妙的是,tac就是cat倒着写,而cat是正向输出内容,tac是逆向输出内容

[root@hcss-ecs-4716 test]# cat demo1.txt
hello world
hello world


hello Linux
[root@hcss-ecs-4716 test]# tac demo1.txt
hello Linux


hello world
hello world

        12、more

        语法:more [选项][文件]

        功能:more命令,功能类似 cat。

[root@hcss-ecs-4716 test]# ll
total 8
-rw-rw-r-- 1 root root   38 Jan 18 14:32 demo1.txt
drwxrwxr-x 3 root root 4096 Jan 18 14:23 yyy
[root@hcss-ecs-4716 test]# ls -l yyy | more
total 4
drwxrwxr-x 3 root root 4096 Jan 18 14:22 newxxx

        一般不推荐使用more,推荐使用less。

rootghcss-ecs-4716:~/111#more big.txt
hello Linux 1
hello Linux 2
hello Linux 3
hello Linux 4
hello Linux 5
hello Linux 6
hello Linux 7
hello Linux 8
hello Linux 9
hello Linux 10
hello Linux 11
hello Linux 12
hello Linux 13
hello Linux 14
hello Linux 15
hello Linux 16
hello Linux 17
hello Linux 18
hello Linux 19

        13、less(重要)推荐查看大文本

        1、less 工具也是对文件或其它输出进行分页显示的工具,应该说是linux正统查看文件内容的工具,功能极其强大。

        2、less 的用法比起 more 更加的有弹性。在 more 的时候,我们并没有办法向前面翻, 只能往后面看 但若使用了 less 时,就可以使用 [pageup][pagedown] 等按键的功能来往前往后翻看文件,更容易用来查看一个文件的内容!

        3、除此之外,在 less 里头可以拥有更多的搜索功能,不止可以向下搜,也可以向上搜。

rootghcss-ecs-4716:~/111#less big.txt
hello Linux 1
hello Linux 2
hello Linux 3
hello Linux 4
hello Linux 5
hello Linux 6
hello Linux 7
hello Linux 8
hello Linux 9
hello Linux 10
hello Linux 11
hello Linux 12
hello Linux 13
hello Linux 14
hello Linux 15
hello Linux 16
hello Linux 17
hello Linux 18
hello Linux 19

        语法: less [参数] 文件

        功能: less与more类似,但使用less可以随意浏览文件,而more仅能向前移动,却不能向后移动,而且less在查看之前不会加载整个文件。

[root@hcss-ecs-4716 test]# less demo2.txt 






hello world
hello WORLD


HELLO LiNuX
HELLO linux

        13、1选项

        -i  忽略搜索时的大小写

        -N  显示每行的行号

        /字符串:向下搜索“字符串”的功能

        ?字符串:向上搜索“字符串”的功能

        n:重复前一个搜索(与 / 或 ? 有关)

        N:反向重复前一个搜索(与 / 或 ? 有关)

        q:quit

         14、head

        head 与 tail 就像它的名字一样的浅显易懂,它是用来显示开头或结尾某个数量的文字区块,head 用来显示档案的 开头至标准输出中,而 tail 想当然尔就是看档案的结尾。

        语法: head [参数]... [文件]... 

        功能: head 用来显示档案的开头至标准输出中,默认head命令打印其相应文件的开头10行。

        选项: -n <行数>:显示的行数。

[root@hcss-ecs-4716 test]# cat demo1.txt 
hello world
hello world


hello Linux
[root@hcss-ecs-4716 test]# head -2 demo1.txt 
hello world
hello world

        15、tail

        tail 命令从指定点开始将文件写到标准输出.使用tail命令的-f选项可以方便的查阅正在改变的日志文件,tail - f filename会把filename里最尾部的内容显示在屏幕上,并且不但刷新,使你看到最新的文件内容.

        语法: tail[必要参数][选择参数][文件] 

        功能: 用于显示指定文件末尾内容,不指定文件时,作为输入信息进行处理。常用查看日志文件。默认tail命令打印其相应文件的末尾10行。

        选项:-f 循环读取     ,    -n 显示行数

[root@hcss-ecs-4716 test]# cat demo1.txt 
hello world
hello world


hello Linux
[root@hcss-ecs-4716 test]# tail -2 demo1.txt 

hello Linux

        16、时间相关的指令

        16、1date显示

        date 指定格式显示时间: date +%Y:%m:%d date

        用法:date [OPTION]... [+FORMAT]

        在显示方面,使用者可以设定欲显示的格式,格式设定为一个加号后接数个标记,其中常用的标记列表如下

        %H : 小时(00..23)

        %M : 分钟(00..59)         

        %S : 秒(00..61)         

        %X : 相当于 %H:%M:%S

        %d : 日 (01..31)

        %m : 月份 (01..12)

        %Y : 完整年份 (0000..9999)

        %F : 相当于 %Y-%m-%d

[root@hcss-ecs-4716 test]# date +%x
01/18/2024

        16、2在设定时间方面

        date -s //设置当前时间,只有root权限才能设置,其他只能查看。

        date -s 20080523 //设置成20080523,这样会把具体时间设置成空00:00:00

        date -s 01:01:01 //设置具体时间,不会对日期做更改

        date -s “01:01:01 2008-05-23″ //这样可以设置全部时间

        date -s “01:01:01 20080523″ //这样可以设置全部时间

        date -s “2008-05-23 01:01:01″ //这样可以设置全部时间

        date -s “20080523 01:01:01″ //这样可以设置全部时间

        16、3时间戳

        时间->时间戳:date +%s

        时间戳->时间:date -d@1508749502

        Unix时间戳(英文为Unix epoch, Unix time, POSIX time 或 Unix timestamp)是从1970年1月1日(UTC/GMT的 午夜)开始所经过的秒数,不考虑闰秒。

        17、cal

        cal命令可以用来显示公历(阳历)日历。公历是现在国际通用的历法,又称格列历,通称阳历。“阳历”又名“太阳 历”,系以地球绕行太阳一周为一年,为西方各国所通用,故又名“西历”。
        命令格式: cal [参数][月份][年份]

        功能: 用于查看日历等时间信息,如只有一个参数,则表示年份(1-9999),如有两个参数,则表示月份和年份

        常用选项

        -3 显示系统前一个月,当前月,下一个月的月历

        -j  显示在当年中的第几天(一年日期按天算,从1月1号算起,默认显示当前月在一年中的天数)

        -y  显示当前年份的日历

[root@hcss-ecs-4716 test]# cal -3
    December 2023         January 2024          February 2024   
Su Mo Tu We Th Fr Sa  Su Mo Tu We Th Fr Sa  Su Mo Tu We Th Fr Sa
                1  2      1  2  3  4  5  6               1  2  3
 3  4  5  6  7  8  9   7  8  9 10 11 12 13   4  5  6  7  8  9 10
10 11 12 13 14 15 16  14 15 16 17 18 19 20  11 12 13 14 15 16 17
17 18 19 20 21 22 23  21 22 23 24 25 26 27  18 19 20 21 22 23 24
24 25 26 27 28 29 30  28 29 30 31           25 26 27 28 29      
31 

        18、find(重要)

        Linux下find命令在目录结构中搜索文件,并执行指定的操作。

        Linux下find命令提供了相当多的查找条件,功能很强大。由于find具有强大的功能,所以它的选项也很 多,其中大部分选项都值得我们花时间来了解一下。

        即使系统中含有网络文件系统( NFS),find命令在该文件系统中同样有效,只你具有相应的权限。

        在运行一个非常消耗资源的find命令时,很多人都倾向于把它放在后台执行,因为遍历一个大的文件系 统可能会花费很长的时间(这里是指30G字节以上的文件系统)。

        语法: find pathname -options

        功能: 用于在文件树种查找文件,并作出相应的处理(可能访问磁盘)

        常用选项: -name   按照文件名查找文件。

[root@hcss-ecs-4716 trail.txt]# find test
test
test/demo2.txt
test/yyy
test/yyy/newxxx
test/yyy/newxxx/xxx2
test/yyy/newxxx/xxx1
test/demo1.txt

        19、grep

        语法: grep [选项] 搜寻字符串 文件

        功能: 在文件中搜索字符串,将找到的行打印出来

        19、1常用选项 -i,-n,-v

[root@hcss-ecs-4716 test]# cat demo2.txt 
hello world
hello WORLD


HELLO LiNuX
HELLO linux

        -i :忽略大小写的不同,所以大小写视为相同

[root@hcss-ecs-4716 test]# grep -i hello demo2.txt
hello world
hello WORLD
HELLO LiNuX
HELLO linux

        -n :顺便输出行号

[root@hcss-ecs-4716 test]# grep -n hello demo2.txt
1:hello world
2:hello WORLD

        -v :反向选择,亦即显示出没有 '搜寻字符串' 内容的那一行

[root@hcss-ecs-4716 test]# grep -v world demo2.txt
hello WORLD


HELLO LiNuX
HELLO linux

        20、zip/unzip(重要)

        语法: zip 压缩文件.zip 目录或文件(zip -r xxx.zip  想要压缩的

                    unzip xxx.zip  (解压到当前路径)。

                    unzip xxx.zip -d /tmp (解压到tmp目录下)

        功能: 将目录或文件压缩成zip格式

        常用选项: -r 递归处理,将指定目录下的所有文件和子目录一并处理

        压缩:

[root@hcss-ecs-4716 111]# ll
total 24
-rwxr-xr-x 1 root root 8360 Dec 19 19:11 a.out
-rw-r--r-- 1 root root  129 Dec  7 20:34 code.c
-rw-r--r-- 1 root root   13 Dec  7 18:35 file.txt
drwxrwxr-x 4 root root 4096 Jan 18 16:37 trail.txt
[root@hcss-ecs-4716 111]# ls -l trail.txt
total 8
drwxrwxr-x 3 root root 4096 Jan 18 14:43 test
-rw-rw-r-- 1 root root    0 Jan 18 13:16 test1.txt
-rw-rw-r-- 1 root root    0 Jan 18 13:35 test2.txt
drwxrwxr-x 3 root root 4096 Jan 18 13:39 test3.txt
[root@hcss-ecs-4716 111]# zip -r trail.zip trail.txt
  adding: trail.txt/ (stored 0%)
  adding: trail.txt/test1.txt (stored 0%)
  adding: trail.txt/test2.txt (stored 0%)
  adding: trail.txt/test/ (stored 0%)
  adding: trail.txt/test/demo2.txt (deflated 14%)
  adding: trail.txt/test/yyy/ (stored 0%)
  adding: trail.txt/test/yyy/newxxx/ (stored 0%)
  adding: trail.txt/test/yyy/newxxx/xxx2 (stored 0%)
  adding: trail.txt/test/yyy/newxxx/xxx1/ (stored 0%)
  adding: trail.txt/test/demo1.txt (deflated 34%)
  adding: trail.txt/test3.txt/ (stored 0%)
  adding: trail.txt/test3.txt/test3-1.txt/ (stored 0%)
[root@hcss-ecs-4716 111]# ll
total 28
-rwxr-xr-x 1 root root 8360 Dec 19 19:11 a.out
-rw-r--r-- 1 root root  129 Dec  7 20:34 code.c
-rw-r--r-- 1 root root   13 Dec  7 18:35 file.txt
drwxrwxr-x 4 root root 4096 Jan 18 16:37 trail.txt
-rw-rw-r-- 1 root root 2164 Jan 18 16:39 trail.zip

        解压:

[root@hcss-ecs-4716 subtrail.txt]# unzip demo.zip
Archive:  demo.zip
   creating: trail.txt/test/
  inflating: trail.txt/test/demo2.txt  
   creating: trail.txt/test/yyy/
   creating: trail.txt/test/yyy/newxxx/
 extracting: trail.txt/test/yyy/newxxx/xxx2  
   creating: trail.txt/test/yyy/newxxx/xxx1/
  inflating: trail.txt/test/demo1.txt  
 extracting: trail.txt/test1.txt     
 extracting: trail.txt/test2.txt     
   creating: trail.txt/test3.txt/
   creating: trail.txt/test3.txt/test3-1.txt/
[root@hcss-ecs-4716 subtrail.txt]# ll
total 8
-rw-rw-r-- 1 root root 2016 Jan 18 16:45 demo.zip
drwxrwxr-x 4 root root 4096 Jan 18 16:47 trail.txt
[root@hcss-ecs-4716 subtrail.txt]# cd tra
-bash: cd: tra: No such file or directory
[root@hcss-ecs-4716 subtrail.txt]# ls -l trail.txt
total 8
drwxrwxr-x 3 root root 4096 Jan 18 14:43 test
-rw-rw-r-- 1 root root    0 Jan 18 13:16 test1.txt
-rw-rw-r-- 1 root root    0 Jan 18 13:35 test2.txt
drwxrwxr-x 3 root root 4096 Jan 18 13:39 test3.txt

        21、tar(重要)打包/解包,不打开它,直接看内容

        tar压缩之后形成的压缩包的格式是: xxx.tgz

        语法:tar [-cxtzjvf] 文件与目录 .... 参数

        常见选项

        -c :建立一个压缩文件的参数指令(create 的意思);

         -x :解开一个压缩文件的参数指令!

        -t :查看 tarfile 里面的文件!

        -z :是否同时具有 gzip 的属性?亦即是否需要用 gzip 压缩?

        -j :是否同时具有 bzip2 的属性?亦即是否需要用 bzip2 压缩?

        -v :压缩的过程中显示文件!这个常用,但不建议用在背景执行过程!

        -f :使用档名,请留意,在 f 之后要立即接档名喔!不要再加参数!

        -C : 解压到指定目录

        21、1压缩

        一般格式:tar -czf  test.tgz xxx(想要压缩的文件名字),也可以使用-czfv,加上v会显示压缩过程。

[root@hcss-ecs-4716 111]# ll
total 24
-rwxr-xr-x 1 root root 8360 Dec 19 19:11 a.out
-rw-r--r-- 1 root root  129 Dec  7 20:34 code.c
-rw-r--r-- 1 root root   13 Dec  7 18:35 file.txt
drwxrwxr-x 4 root root 4096 Jan 18 16:37 trail.txt
[root@hcss-ecs-4716 111]# tar -czf demo.tgz trail.txt/*
[root@hcss-ecs-4716 111]# ll
total 28
-rwxr-xr-x 1 root root 8360 Dec 19 19:11 a.out
-rw-r--r-- 1 root root  129 Dec  7 20:34 code.c
-rw-rw-r-- 1 root root  389 Jan 18 16:56 demo.tgz
-rw-r--r-- 1 root root   13 Dec  7 18:35 file.txt
drwxrwxr-x 4 root root 4096 Jan 18 16:37 trail.txt

        21、2解压

        一般格式: tar  -xzf   test.tgz  (-C  path),加上-C path表示解压到某个路径下。

也可以使用-xzfv,就会显示解压过程。

[root@hcss-ecs-4716 111]# ll
total 28
-rwxr-xr-x 1 root root 8360 Dec 19 19:11 a.out
-rw-r--r-- 1 root root  129 Dec  7 20:34 code.c
drwxrwxr-x 2 root root 4096 Jan 18 16:57 demo
-rw-r--r-- 1 root root   13 Dec  7 18:35 file.txt
drwxrwxr-x 4 root root 4096 Jan 18 16:37 trail.txt
[root@hcss-ecs-4716 111]# ls -l demo
total 4
-rw-rw-r-- 1 root root 389 Jan 18 16:56 demo.tgz
[root@hcss-ecs-4716 111]# cd demo
[root@hcss-ecs-4716 demo]# tar -xzf demo.tgz
[root@hcss-ecs-4716 demo]# ll
total 8
-rw-rw-r-- 1 root root  389 Jan 18 16:56 demo.tgz
drwxrwxr-x 4 root root 4096 Jan 18 16:58 trail.txt
[root@hcss-ecs-4716 demo]# ls -l trail.txt
total 8
drwxrwxr-x 3 root root 4096 Jan 18 14:43 test
-rw-rw-r-- 1 root root    0 Jan 18 13:16 test1.txt
-rw-rw-r-- 1 root root    0 Jan 18 13:35 test2.txt
drwxrwxr-x 3 root root 4096 Jan 18 13:39 test3.txt

        22、bc

        bc指令可以很方便的进行浮点数运算。

        23、uname

        语法:uname [选项] 

        功能: uname用来获取电脑和操作系统的相关信息。

        补充说明:uname可显示linux主机所用的操作系统的版本、硬件的名称等基本信息。

        常用选项: -a或–all 详细输出所有信息,依次为内核名称,主机名,内核版本号,内核版本,硬件名,处理器类型,硬件平台类型,操作系统名称

[root@hcss-ecs-4716 111]# uname
Linux
[root@hcss-ecs-4716 111]# uname -r
3.10.0-1160.92.1.el7.x86_64
[root@hcss-ecs-4716 111]# uname -ra
Linux hcss-ecs-4716 3.10.0-1160.92.1.el7.x86_64 #1 SMP Tue Jun 20 11:48:01 UTC 2023 x86_64 x86_64 x86_64 GNU/Linux

        24、重要热键

        [Tab]按键---具有『命令补全』和『档案补齐』的功能

        [Ctrl]-c按键---让当前的程序『停掉』

        [Ctrl]-d按键---通常代表着:『键盘输入结束(End Of File, EOF 戒 End OfInput)』的意思;另外,他也可 以用来取代exit。

        25、关机

        语法:shutdown [选项] 

        常见选项

         -h : 将系统的服务停掉后,立即关机。

         -r : 在将系统的服务停掉之后就重新启动

        -t sec : -t 后面加秒数,亦即『过几秒后关机』的意思

        26、拓展命令

        安装和登录命令:login、shutdown、halt、reboot、install、mount、umount、chsh、exit、last;

        文件处理命令:file、mkdir、grep、dd、find、mv、ls、diff、cat、ln;

        系统管理相关命令:df、top、free、quota、at、lp、adduser、groupadd、kill、crontab;         网络操作命令:ifconfig、ip、ping、netstat、telnet、ftp、route、rlogin、rcp、finger、mail、 nslookup;

        系统安全相关命令:passwd、su、umask、chgrp、chmod、chown、chattr、sudo ps、who;

        其它命令:tar、unzip、gunzip、unarj、mtools、man、unendcode、uudecode。

        27、shell命令及运行原理

        Linux严格意义上说的是一个操作系统,我们称之为“核心(kernel)“ ,但我们一般用户,不能直接使用kernel。 而是通过kernel的“外壳”程序,也就是所谓的shell,来与kernel沟通。如何理解?为什么不能直接使用kernel?

        从技术角度,Shell的最简单定义:命令行解释器(command Interpreter),主要包含:1、 将使用者的命令翻译给核心(kernel)处理; 2、将核心的处理结果翻译给使用者。

        对比windows GUI,我们操作windows 不是直接操作windows内核,而是通过图形接口,点击,从而完成我们的 操作(比如进入D盘的操作,我们通常是双击D盘盘符.或者运行起来一个应用程序)。

        shell 对于Linux,有相同的作用,主要是对我们的指令进行解析,解析指令给Linux内核。反馈结果在通过内核运 行出结果,通过shell解析给用户。

        帮助理解:如果说你是一个闷骚且害羞的程序员,那shell就像媒婆,操作系统内核就是你们村头漂亮的 且有让你心动的MM小花。你看上了小花,但是有不好意思直接表白,那就让你你家人找媒婆帮你提 亲,所有的事情你都直接跟媒婆沟通,由媒婆转达你的意思给小花,而我们找到媒婆姓王,所以我们叫 它王婆,它对应我们常使用的bash。