韩顺平老师的Linux基础学习笔记 (上)

news2025/1/20 19:55:44

Linux学习笔记

前言:本系列笔记的参考由 2021韩顺平 一周学会Linux 总结而成,希望能给学习Linux的同学一些帮助。也感谢韩老师录制的视频给我带来了非常巨大的收获!

目录:

  • 韩顺平老师的Linux基础学习笔记 (上)
  • 韩顺平老师的Linux基础学习笔记 (下)

1. CentOS 7.6 安装注意点

1.1 配置分区

Linux分区配置
分区类型一般大小设备类型文件系统
Boot1GB标准分区ext4
Swap2GB标准分区swap
Root分区后余下所有的空间标准分区ext4

特别的,交换分区是为了使电脑运行多个程序而划分的区域。一旦内存中的进程结束,交换分区中的进程会立即载入内存运行

1.2 虚拟机的三种网络模式

Linux的3种网络模式-第 2 页

2. VMware 功能介绍

2.1 VMTools

  1. 安装VMTools后,可以让我们在Windows下更好的管理vm虚拟机
  2. 可以设置Windows和CentOS的共享文件夹
    VMTools使用

安装步骤:

  1. 进入CentOS
  2. 点击VM菜单的 install vmware tools
  3. CentOS会出现一个VM的安装包,xx.tar.gz
  4. 拷贝到 /opt
  5. 进入该VM解压的目录,/opt 目录下
    tar -zxvf VMwareTools-10.3.23-16594550.tar.gz
  6. 安装 ./vmware-install.pl
  7. 全部使用默认设置即可

注意:安装vmtools 需要有gcc,只需要在终端中输入 gcc -v

设置共享文件夹

  1. 在需要设置共享文件夹的虚拟机上点击右键
  2. 点击 设置 – 选项 – 共享文件夹 – 总是启用 – 添加共享文件夹目录 – 点击确定

怎么在Linux下读取共享文件?

  • 点击主文件夹 – 其他位置 – 计算机 – mnt文件夹 – hgfs文件夹 – 当前的共享文件夹

3. Linux 的各项操作

3.1 Linux 目录结构

Linux 的文件系统是采用层级式的树状目录结构,在此结构中的最上层是 根目录 “/”,然后在此目录下再创建其他的目录

Linux目录结构
  1. /bin 常用 (/usr/bin、/usr/local/bin)
    是 Binary 的缩写,这个目录存放着最经常使用的命令

  2. /sbin (/usr/sbin、/usr/local/sbin)
    s就是Super User的意思,这里存放的是系统管理员使用的系统管理程序

  3. /home 常用
    存放普通用户的主目录,在Linux中每个用户都有一个自己的目录,一般该目录是以用户的账号命名

  4. /root 常用
    该目录为系统管理员,也称作超级权限者的用户主目录

  5. /lib 系统开机所需要最基本的动态连接共享库,其作用类似于Windows里的DLL文件。几乎所有的应用程序都都需要用到这些共享库

  6. /lost + found 这个目录一般情况下是空的,当系统非法关机后,这里就存放了一些文件

  7. /etc 常用
    所有的系统管理所需要的配置文件和子目录,比如安装 mysql 数据库 my.conf

  8. /usr 常用
    这是一个非常重要的目录,用户的很多应用程序和文件都放在这个目录下,类似与Windows下的program files目录

  9. /boot 常用
    存放的是启动 Linux 时使用的一些核心文件,包括一些连接文件以及镜像文件

  10. /proc [不能碰] 这个目录是一个虚拟目录,它是系统内存的映射,访问这个目录来获取系统信息

  11. /srv [不能碰] service缩写,该目录存放一些服务启动之后需要提取的数据

  12. /sys [不能碰] 这是Linux 2.6 内核的一个很大的变化。该目录下安装了2.6内核中新出现的一个文件系统 sysfs

  13. /tmp 这个目录是用来存放一些临时文件的

  14. /dev 类似于Windows的设备管理器,把所有的硬件用文件的形式存储

  15. /media 常用
    Linux 系统会自动识别一些设备,例如 U盘、光驱等等,当识别后,Linux会把识别的设备挂载到这个目录下

  16. /mnt 常用
    系统提供该目录是为了让用户临时挂载别的文件系统的,我们可以将外部的存储挂载到 /mnt 上,然后进入该目录就可以直接查看里面的内容了

  17. /opt 这是给主机额外安装软件所存放的目录,如安装 ORACLE数据库就可以放到该目录下,默认为空

  18. /usr/local 常用
    这是另一个给主机额外安装软件所安装的目录。一般是通过编译源码的方式安装程序

  19. /var 常用
    这个目录中存放着在不断扩充着的东西,习惯将经常被修改的目录放在这个目录下,包括各种日志文件

  20. /selinux [security-enhance linux]
    SELinux 是一种安全子系统,他能控制程序只能访问特定文件,有三种工作模式,可以自行设置

3.2 Linux 实操-远程登录Linux服务器

Linux的远程登录

场景:

  1. Linux服务器是开发小组共享
  2. 正式上线的项目是运行在公网
  3. 因此程序员需要远程登录到Linux进行项目管理或者开发
  4. 画出简单的 网络拓扑示意图
  5. 远程登录客户端有 Xshell6、Xftp6,我们学习使用Xshell和Xftp6,其他远程工具大同小异

3.2.1 如何使用Xshell远程登录

  1. 先在Linux服务器中查看服务器的IP地址 ifconfig

  2. 获取到 CentOS 的IP地址后,在真机上打开命令提示符窗口使用ping命令看是否能ping通

  3. ping通后,在Xshell新建会话属性,如下图所示设置名称和Linux主机的IP地址
    image-20221007132432301

  4. 配置完毕后点击确定,在左侧的会话管理器中双击刚才添加的Linux主机
    此时窗口中会弹出选项,选择一次性接收(类似登录的不保存账号密码) 或 接受并保存(类似登录的记住账号密码)
    image-20221007133627584

3.3 Linux 实操-远程上传下载文件

是一个基于windows平台的功能强大的SFTP、FTP文件传输软件

使用了Xftp以后,Windows用户能安全地在UNIX/Linux和Windows PC之间传输文件

3.3.1 如何利用Xftp远程上传下载文件

  1. 先在Linux服务器中查看服务器的IP地址 ifconfig

  2. 获取到 CentOS 的IP地址后,在真机上打开命令提示符窗口使用ping命令看是否能ping通

  3. ping通后,在Xshell新建会话属性,如下图所示设置名称和Linux主机的IP地址
    image-20221007134452270

  4. 配置完毕后点击确定,在左侧的会话管理器中双击刚才添加的Linux主机
    此时窗口中会弹出选项,选择一次性接收(类似登录的不保存账号密码) 或 接受并保存(类似登录的记住账号密码)

注意事项:Xftp 中文显示乱码问题

  • 点击左上角的属性,点击选项,把编码调成UTF8即可
    image-20221007135208634

3.4 vi 和 vim 编辑器

Linux系统会内置vi文本编辑器

Vim具有程序编辑的能力,可以看做是Vi的增强版本,可以主动的以字体颜色辨别语法的正确性,方便程序设计。代码补全、编译及错误跳转等方便编程的功能特别丰富,在程序员中被广泛使用

3.4.1 vi和vim常用的3种模式

  1. 正常模式
    以vim打开一个档案就直接进入一般模式了(这是默认的模式)
    在这个模式中,你可以使用〖上下左右〗按键来移动光标,你可以使用〖删除字符」或〖删除整行〗来处理档案内容,也可以使用
    〖复制、粘贴〗来处理你的文件数据

  2. 插入模式
    按下i、I、o、O、a、A、r、R等任何一个字母之后才会进入编辑模式,一般来说按i即可

  3. 命令行模式
    在这个模式当中,可以提供你相关指令,完成读取、存盘、替换、离开vim、显示行号等的动作则是在此模式中达成的

如何从插入模式进入到命令行模式?

  1. 先按键盘上的 Esc,然后再输入 :wq。wq的意思是写入并退出

3.4.2 vi和vim各种模式的切换

Vim模式转换
  1. 拷贝当前行,拷贝当前行向下的5行,井粘贴

    一般模式下
    拷贝当前行:yyp
    拷贝当前行向下的5行:5yyp
    
  2. 删除当前行dd,删除当前行向下的5行

    一般模式下:dd 5dd
    
  3. 在文件中查找某个单词

     [在命令行下/关键字,回车查找,输入n就是查找下一个]
     如 /Hello,按n就是查找下一个
    
  4. 设置文件的行号,取消文件的行号

    [命令行下 显示行号:set nu 不显示行号:set nonu]
    
  5. 编辑/etc/profile文件,在一般模式下,使用快捷键到该文档的最末行[G]最首行[gg]

    一般模式下
    定位到最末尾行G
    定位到首行gg
    
  6. 在一个文件中输入“hello“,在一般模式下,然后又撤销这个动作u

    一般模式下 按u撤销操作
    
  7. 编辑/etc/profile文件,在一般模式下,井将光标移动到,输入20,再输入shift+g

    一般模式下 20+shift+g 定位到第20行
    

4. Linux 命令实操

4.1 关机&重启

基本介绍:

命令作用
shutdown -h now立刻进行关机
shutdown -h 11分钟后关机
shutdown -r now现在重新启动计算机
halt(停止)关机,和第一条是一样的
reboot现在重新启动计算机
sync把内存的数据同步到磁盘

注意:

  1. 不管是重启系统还闭系统,首先要运行sync命令,把内存中的数据写到磁盘中
  2. 目前的 shutdown/reboot/halt 等命令均已经在关机前进行了sync

4.2 用户登录&注销

基本介绍:

  1. 登录时尽量少用root帐号登录,因为它是系统管理员,最大的权限,避免操作失误。可以利用
    普通用户登录,登录后再用 “su-用户名” 命令来切换成系统管理员身份
  2. 在提示符下输入 logout 即可注销用户
[sanx@SanxCentOS7 ~]$ su - root
密码:
上一次登录:五 107 15:16:14 CST 2022:0 上
[root@SanxCentOS7 ~]# cd /root/
[root@SanxCentOS7 ~]# logout
[sanx@SanxCentOS7 ~]$ 

注意:

  1. logout注销指令在图形运行级别无效,在运行级别3下有效
    image-20221007152502552

  2. 运行级别这个概念,后面给大家介绍

4.3 用户管理

Linux系统是一个多用户多任务的操作系统,任何一个要使用系统资源的用户,都必须首先向系统管理员申请一个账号,然后以这个账号的身份进入系统


1. 添加用户

基本语法:useradd 用户名

[root@SanxCentOS7 ~]# cd /
[root@SanxCentOS7 /]# ls
bin  boot  dev  etc  home  lib  lib64  lost+found  media  mnt  opt  proc  root  run  sbin  srv  sys  tmp  usr  var
[root@SanxCentOS7 /]# cd /home
[root@SanxCentOS7 home]# ls
sanx
[root@SanxCentOS7 home]# useradd Lihua
[root@SanxCentOS7 home]# ls
Lihua  sanx

注意点:

  1. 当创建用户成功后,会自动的创建和用户同名的家目录(默认目录在/home/xxx)

  2. 也可以通过 usereadd -d 指定目录 新的用户名,给新创建的用户指定家目录

    [root@SanxCentOS7 home]# useradd -d /home/test xiaohong
    [root@SanxCentOS7 home]# ls
    Lihua  sanx  test
    

2. 指定/修改密码

基本语法:passwd 用户名

⚠️注意:如果没有写用户名,那么默认的就是修改当前账户的密码

[root@SanxCentOS7 home]# passwd Lihua
更改用户 Lihua 的密码 。
新的 密码:
无效的密码: 密码少于 7 个字符
重新输入新的 密码:
passwd:所有的身份验证令牌已经成功更新。
[root@SanxCentOS7 home]# 

这里少于7个字符也没关系,再输一遍密码就行了

补充:显示当前用户的所在目录命令是 pwd

[Lihua@SanxCentOS7 ~]$ pwd
/home/Lihua

3. 删除用户

基本语法:userdel 用户名

特别的:

  1. (推荐)userdel 用户名 这个命令并不会删除家目录,它是直接保留在家目录中的
  2. userdel -r 用户名 这个命令会直接删除家目录下这个用户的所有文件,谨慎执行
[root@SanxCentOS7 home]# userdel Lihua
[root@SanxCentOS7 home]# ls
Lihua  sanx  test
------------------------------------
[root@SanxCentOS7 ~]# cd /home
[root@SanxCentOS7 home]# ls
Lihua  sanx  test
[root@SanxCentOS7 home]# userdel -r Lihua
[root@SanxCentOS7 home]# ls
sanx  test

4. 查询用户信息指令

基本语法:id 用户名

[root@SanxCentOS7 home]# id root
uid=0(root) gid=0(root)=0(root)
[root@SanxCentOS7 home]# id xiaohong
uid=1002(xiaohong) gid=1002(xiaohong)=1002(xiaohong)
[root@SanxCentOS7 home]# id Lihua
id: Lihua: no such user

5. 切换用户

在操作Linux中,如果当前用户的权限不够,可以通过 su - 指令,切换到高权限用户,比如root

基本语法:su - 切换用户名

--------创建一个叫ben的用户---------
[root@SanxCentOS7 home]# useradd ben
[root@SanxCentOS7 home]# passwd ben
更改用户 ben 的密码 。
新的 密码:
无效的密码: 密码少于 8 个字符
重新输入新的 密码:
passwd:所有的身份验证令牌已经成功更新。

-----由root用户切换至普通用户-----
[root@SanxCentOS7 home]# su - ben

-----由普通用户切换到root用户-----
[ben@SanxCentOS7 ~]$ su - root
密码:
上一次登录:五 107 15:44:34 CST 2022192.168.174.1pts/1 上

-----由root用户注销至普通用户-----
[root@SanxCentOS7 ~]# logout

-----由普通用户注销至退出系统-----
[ben@SanxCentOS7 ~]$ exit
登出
[root@SanxCentOS7 home]# logout

Connection closed.

Disconnected from remote host(192.168.174.129[CentOS7_1]) at 15:58:29.

Type `help' to learn how to use Xshell prompt.
[C:\~]$ 

注意:

  1. 从权限高的用户切换到权限低的用户,不需要输入密码,反之需要
  2. 当需要返回到原来用户时,使用 exit/logout 指令

6. 查看当前用户/登录用户

基本语法:whoami / who am i

[root@SanxCentOS7 ~]# who am i
root     pts/1        2022-10-07 16:03 (xxx.xxx.xxx.1)
[root@SanxCentOS7 ~]# whoami
root

7. 用户组

类似与角色,系统可以对有 共性/权限 的多个用户进行统一的管理

新增组:groupadd 组名

删除组:groupdel 组名

增加用户是直接加上组:useradd -g 用户组 用户名

特别的,如果添加一个用户而没有指定组,那么系统会自动把该用户添加到与该用户同名的组里

[root@SanxCentOS7 ~]# groupadd qingshi
[root@SanxCentOS7 ~]# groupdel qingshi
[root@SanxCentOS7 ~]# groupadd qingshi
[root@SanxCentOS7 ~]# useradd -g qingshi liuwendi
[root@SanxCentOS7 ~]# id liuwendi
uid=1004(liuwendi) gid=1004(qingshi)=1004(qingshi)

修改用户的组:usermod -g 新用户组 用户名

[root@SanxCentOS7 ~]# id liuwendi
uid=1004(liuwendi) gid=1004(qingshi)=1004(qingshi)
--------------------
[root@SanxCentOS7 ~]# groupadd daibiao
[root@SanxCentOS7 ~]# usermod -g daibiao liuwendi
[root@SanxCentOS7 ~]# id liuwendi
uid=1004(liuwendi) gid=1005(daibiao)=1005(daibiao)

用户和组相关的文件

  1. /etc/passwd 文件
    用户(user)的配置文件,记录用户的各种信息
    每行的含义:用户名:口令:用户标识号:组标识号:注释性描述:主目录:登录Shell
    image-20221007163231497

  2. /etc/shadow 文件
    口令的配置文件
    每行的含义:登录名:加密口令:最后一次修改时间:最小时间间隔:最大时间间隔:警告时间:不活动时间:失效时间:标志
    image-20221007163403243

  3. /etc/group 文件
    组 (group) 的配置文件,记录 Linux 包含的组信息
    每行的含义:组名:口令:组标识号:组内用户列表
    image-20221007163530810


5. Linux 实用指令

5.1 指定运行级别

运行级别说明
0:关机
1:单用户〖找回丢失密码〗
2:多用户状态没有网络服务
3:多用户状态有网络服务
4:系统未使用保留给用户
5:图形界面(默认)
6:系统重启
常用运行级别是3和5,也可以指定默认运行级别,后面演示

命令:init[0123456]应用案例:通过init来切换不同的运行级别,比如动5-3,然后关机

指定默认运行级别

在CentOS7以前,在etc/inittab 文件中

之后进行了简化,如下:
multi-user.target:analogous to runlevel 3
graphical.target:analogous to runlevel 5

当前的默认运行级别:systemctl get default
设置默认的运行级别:systemctl set-default TARGET.target

-----将默认运行改为多用户有网络模式-----
[root@SanxCentOS7 ~]# systemctl get-default
graphical.target
[root@SanxCentOS7 ~]# systemctl set-default multi-user.target
Removed symlink /etc/systemd/system/default.target.
Created symlink from /etc/systemd/system/default.target to /usr/lib/systemd/system/multi-user.target.
-----------------------------------

---再改回来---
[root@SanxCentOS7 ~]# systemctl get-default
multi-user.target
[root@SanxCentOS7 ~]# reboot

5.2 找回 root 密码

步骤:

  1. 在开机界面输入e

  2. 进入编辑界面,使用键盘上的上下键把光标往下移动,找到以""Linux16”开头内容所在的行数”,在行的最后面输入:init=/bin/sh
    image-20221007194629392

  3. 接着,输入完成后,直接按快捷键 Ctrl+x 进入单用户模式
    image-20221007195132174

  4. 接着,在光标闪烁的位置中输入:mount -o remount,rw /(注意:各个单词间有空格)完成后按键盘的回车键(Enter)
    image-20221007195437938

  5. 在新的一行最后面输入:passwd,完成后按键盘的回车键(Enter)输入密码,然后再次确认密码即可密码修改成功后,会显示passwd…的样式,说明密码修改成功
    image-20221007195750241

  6. 接着,在鼠标闪烁的位置中(最后一行中)输入:touch /.autorelabel(注意:touch后面有一个空格)
    完成后按键盘的回车键(Enter)
    image-20221007195939186

  7. 继续在光标闪烁的位置中,输入:exec /sbm/mit(注意:exec后面有一个空格),完成后按键盘的回车键 (Enter),等待系统自动修改密码,完成后,系统会自动重启:新的密码生效了

5.3 帮助指令

  • man 获得帮助信息
    基本语法:man [命令或配置文件](功能描述:获得帮助信息)

Linux下,隐藏文件是以 . 开头的文件。选项可以组合使用,比如:ls -la

  • help 指令
    基本语法:help 命令(功能描述:获得shell内置命令的帮助信息)
    image-20221007202310815

5.4 文件目录类

pwd 指令

基本语法:pwd(功能描述:显示当前工作目录的绝对路径)

[root@SanxCentOS7 ~]# cd /home
[root@SanxCentOS7 home]# ls
ben  liuwendi  sanx  test
[root@SanxCentOS7 home]# cd ben/
[root@SanxCentOS7 ben]# vim a.txt
[root@SanxCentOS7 ben]# pwd
/home/ben

ls 指令

基本语法:ls [选项] [目录或是文件]

常用选项:
-a:显示当前所有的文件和目录,包括隐藏的
-l:以列表的方式来显示信息
-lh:按照人类的理解来显示该目录下文件的详细信息


cd 指令

基本语法:cd [参数](功能性描述:切换到指定目录)

理解:绝对路径和相对路径

cd ~ 或者 cd: 回到自己的家目录

[root@SanxCentOS7 ben]# whoami
root
[root@SanxCentOS7 ben]# cd ~
[root@SanxCentOS7 ~]# pwd
/root
[root@SanxCentOS7 ~]# su - ben
上一次登录:五 107 15:57:24 CST 2022pts/1 上
[ben@SanxCentOS7 ~]$ cd ~
[ben@SanxCentOS7 ~]$ pwd
/home/ben
---------------------------
[root@SanxCentOS7 ~]# cd /home/ben
[root@SanxCentOS7 ben]# pwd
/home/ben
[root@SanxCentOS7 ben]# cd ..
[root@SanxCentOS7 home]# pwd
/home
[root@SanxCentOS7 home]# cd ..
[root@SanxCentOS7 /]# pwd
/

mkdir 指令

mkdir 指令用于创建目录

基本语法:mkdir [选项] 要创建的目录

常用选项
-p:创建多级目录

-----创建单个目录-----
[root@SanxCentOS7 ~]# mkdir /home/dog
[root@SanxCentOS7 ~]# cd /home
[root@SanxCentOS7 home]# ls
ben  dog  liuwendi  sanx  test

-----尝试创建多级目录-----
[root@SanxCentOS7 home]# mkdir /home/animal/tiger
mkdir: 无法创建目录"/home/animal/dog": 没有那个文件或目录

-----正确的创建多级目录的方法-----
[root@SanxCentOS7 home]# mkdir -p /home/animal/tiger
[root@SanxCentOS7 home]# ls
animal  ben  dog  liuwendi  sanx  test
[root@SanxCentOS7 home]# cd animal/
[root@SanxCentOS7 animal]# ls
tiger

rmdir 指令

rmdir 指令删除空目录

基本语法:rmdir [选项] 要删除的空目录

注意事项:

  1. rmdir 删除的是空目录,如果目录下有内容时是无法删除的
  2. 如果需要删除非空目录,需要使用 rm -rf 要删除的目录
-----原本的目录结构-----
[root@SanxCentOS7 home]# ls
animal  ben  dog  liuwendi  sanx  test

-----删除一个目录-----
[root@SanxCentOS7 home]# rmdir /home/dog
[root@SanxCentOS7 home]# ls
animal  ben  liuwendi  sanx  test

-----删除多个目录-----
[root@SanxCentOS7 home]# rmdir /home/animal/
rmdir: 删除 "/home/animal/" 失败: 目录非空
[root@SanxCentOS7 home]# rm -rf /home/animal/
[root@SanxCentOS7 home]# ls
ben  liuwendi  sanx  test

touch 指令

touch 指令创建空文件

基本语法:touch 文件名称

[root@SanxCentOS7 home]# ls
ben  liuwendi  sanx  test
[root@SanxCentOS7 home]# touch hello.txt
[root@SanxCentOS7 home]# ls
ben  hello.txt  liuwendi  sanx  test

cp 指令

cp 指令拷贝文件到指定目录

基本语法:cp [选项] source(需要拷贝的目标文件) dest(拷贝文件粘贴的目的目录)

常用选项
-r:递归复制整个文件夹

注意事项:

  1. 强制覆盖不提示的方法:\cp
-----案例1:将/home/hello.txt 拷贝到 /home/bbb/hello.txt-----
[root@SanxCentOS7 home]# mkdir /home/bbb
[root@SanxCentOS7 home]# ls
bbb  ben  hello.txt  liuwendi  sanx  test
[root@SanxCentOS7 home]# cp hello.txt bbb/
[root@SanxCentOS7 home]# ls
bbb  ben  hello.txt  liuwendi  sanx  test
[root@SanxCentOS7 home]# cd bbb/
[root@SanxCentOS7 bbb]# ls
hello.txt

-----案例2:递归复制整个文件夹 将/home/bbb整个目录,拷贝到/opt下-----
[root@SanxCentOS7 bbb]# touch hello2.txt 
[root@SanxCentOS7 bbb]# ls
hello2.txt  hello.txt
[root@SanxCentOS7 bbb]# cd /home
[root@SanxCentOS7 home]# cp -r /home/bbb /opt/
bbb  ben  hello.txt  liuwendi  sanx  test
[root@SanxCentOS7 home]# cd /opt/
[root@SanxCentOS7 opt]# ls
bbb  rh
[root@SanxCentOS7 opt]# cd bbb/
[root@SanxCentOS7 bbb]# ls
hello2.txt  hello.txt
[root@SanxCentOS7 bbb]# pwd
/opt/bbb

-----强制覆盖文件且不提示,普通指令过于繁琐,需要询问每一个文件是否需要覆盖-----
[root@SanxCentOS7 bbb]# cp -r /home/bbb /opt/
cp:是否覆盖"/opt/bbb/hello.txt"? y
cp:是否覆盖"/opt/bbb/hello2.txt"? y
加入 "\" 后 就直接覆盖不会再询问了
[root@SanxCentOS7 bbb]# \cp -r /home/bbb /opt/

rm 指令

rm 指令移除文件或目录

基本语法:rm [选项] 要删除的文件或目录

一般 rm 指令后跟的是绝对路径,如果要删除的文件或目录就在当前的工作目录,那么可以直接写文件的名字删除

常用选项
-r:递归删除整个文件夹
-f:强制删除不提示

注意事项:

  1. 强制删除不提示的方法:带上 -f 参数即可
-----案例1:将/home/hello.txt删除-----
[root@SanxCentOS7 home]# cp hello.txt bbb/
[root@SanxCentOS7 home]# ls
bbb  ben  hello.txt  liuwendi  sanx  test

[root@SanxCentOS7 home]# rm hello.txt 
rm:是否删除普通空文件 "hello.txt"?y

-----案例2:递归 删除整个文件夹/home/bbb-----
[root@SanxCentOS7 home]# rm -rf bbb/
[root@SanxCentOS7 home]# ls
ben  liuwendi  sanx  test

mv 指令

mv 移动文件与目录或重命名

基本语法:

  1. mv oldNameFile newNameFile(功能描述:重命名)
  2. mv /temp/movefile/targetFolder(功能描述:移动文件)
-----案例1:将/home/cat.txt文件重新命名为pig.txt-----
[root@SanxCentOS7 home]# touch cat.txt
[root@SanxCentOS7 home]# ls
ben  cat.txt  sanx  test
[root@SanxCentOS7 home]# mv cat.txt pig.txt
[root@SanxCentOS7 home]# ls
ben  pig.txt  sanx  test

-----案例2:将/home/pig.txt文件移动到/root目录下-----
[root@SanxCentOS7 home]# mv /home/pig.txt /root
[root@SanxCentOS7 home]# ls
ben  sanx  test
[root@SanxCentOS7 home]# cd /root/
[root@SanxCentOS7 ~]# ls
anaconda-ks.cfg  Hello.java  initial-setup-ks.cfg  pig.txt  公共  模板  视频  图片  文档  下载  音乐  桌面

特别的,如果 命令为 # mv /home/pig.txt /root/cow.txt
那么,就是 移动并且重命名

-----案例3:移动整个目录-----
[root@SanxCentOS7 opt]# mv bbb/ /home/
[root@SanxCentOS7 opt]# ls
rh
[root@SanxCentOS7 opt]# cd /home/
[root@SanxCentOS7 home]# ls
bbb  ben  sanx  test
[root@SanxCentOS7 home]# cd bbb/
[root@SanxCentOS7 bbb]# ls
hello2.txt  hello.txt

cat 指令

cat 查看文件内容

基本语法:cat [选项] 要查看的文件

常用选项
-n:显示行号

注意事项:

  1. cat 只能浏览文件,而不能修改文件,为了浏览方便,一般会带上 管道命令 |more
[root@SanxCentOS7 bbb]# cat -n  /etc/profile
# /etc/profile

# System wide environment and startup programs, for login setup
# Functions and aliases go in /etc/bashrc

# It's NOT a good idea to change this file unless you know what you
# are doing. It's much better to create a custom.sh shell script in
# /etc/profile.d/ to make custom changes to your environment, as this
# will prevent the need for merging in future updates.

pathmunge () {
    case ":${PATH}:" in
        *:"$1":*)
            ;;
        *)
            if [ "$2" = "after" ] ; then
                PATH=$PATH:$1
            else
                PATH=$1:$PATH
            fi
    esac
}
......more......

more 指令

more 指令是一个基于 VI 编辑器的文本过滤器,它以全屏幕的方式按页显示文本文件的内容。more指令中内置了若干快捷键

基本语法:more 要查看的文件

操作功能说明
空白键(space)代表向下翻一页
Enter代表向下翻 一行
q代表立刻离开more,不再显示该文件内容
Ctrl+F向下滚动一屏
Ctrl+B返回上一屏
=输出当前行的行号
:f输出文件名和当前行的行号
-----案例:采用more查看文件 /etc/profile-----
more /etc/profile

less 指令

less 指令用来分屏查看文件内容,它的功能与more指令类似,但是比more指令更加强大,支持各种显示终端。less 指令在显示文件内容时,并不是一次将整个文件加载之后才显示,而是根据显示需要加载内容,对于显示大型文件具有较高的效率

基本语法:less 要查看的文件

操作功能说明
空白键向下翻动一页
pagedown向下翻动一页
pageup向上翻动一页
/字串向下搜寻 字串 的功能;n:向下查找;N:向上查找
?字串向上搜寻 字串 的功能;n:向下查找;N:向上查找
q离开 less 这个程序
less xxx.txt

echo 指令

echo 输出内容到控制台

基本语法:echo [选项] [输出内容]

注意事项:

  1. 在输出内容中不能添加感叹号,不然会识别错误
  2. echo 命令 下输出内容尽量使用单引号或者不使用符号
    QQ图片20221009144007
-----案例1:输出环境变量-----
[root@SanxCentOS7 ~]# echo $HOSTNAME
SanxCentOS7

-----案例2:输出内容-----
[root@SanxCentOS7 ~]# echo "hello,world"
hello,world

[root@SanxCentOS7 ~]# echo "hello,world!"
-bash: !": event not found

[root@SanxCentOS7 ~]# echo hello,world
hello,world
[root@SanxCentOS7 ~]# echo hello,world!
hello,world!
[root@SanxCentOS7 ~]# echo 'hello,world!'
hello,world!

head 指令

head用于显示文件的开头部分内容,默认情况下head指令显示文件的前10行内容

基本语法:

  1. head 文件 (功能描述:查看文件头10行内容)
  2. head -n 5 文件 (功能描述:查看文件头5行内容,5可以是任意数)
[root@SanxCentOS7 ~]# head -n 5  /etc/profile
# /etc/profile

# System wide environment and startup programs, for login setup
# Functions and aliases go in /etc/bashrc

tail 指令

tail 用于输出文件中尾部的内容,默认情况下tail指令显示文件的前10行内容

基本语法:

  1. tail 文件(功能描述:查看文件尾10行内容)
  2. tail -n 5 文件(功能描述:查看文件尾5行内容,5可以是任意行数)
  3. tail -f 文件(功能描述:实时追踪该文档的所有更新)
    退出追踪需要使用 Ctrl + C
    GIF 2022-10-9 15-07-41
-----案例1:查看文件尾部内容(默认10行)-----
[root@SanxCentOS7 ~]# tail /etc/profile
        if [ "${-#*i}" != "$-" ]; then 
            . "$i"
        else
            . "$i" >/dev/null
        fi
    fi
done

unset i
unset -f pathmunge

-----案例2:查看文件尾部5行的内容-----
[root@SanxCentOS7 ~]# tail -n 5  /etc/profile
    fi
done

unset i
unset -f pathmunge

-----案例3:实时追踪文件变化-----
[root@SanxCentOS7 ~]# cd /home
[root@SanxCentOS7 home]# touch mydate.txt
[root@SanxCentOS7 home]# ls
bbb  ben  mydate.txt  sanx  test
[root@SanxCentOS7 home]# tail -f mydate.txt 
hello

命令详解:echo 'hello' > /home/mydate.txt
将 内容 hello 写入到文件 /home/mydate.txt 中,并在终端显示输入的内容


> 指令 和 >> 指令

> 输出重定向 和 >> 追加
简单理解就是 > 作用是覆盖 >> 作用是追加

基本语法:

  1. ls -l > 文件(功能描述:列表的内容写入文件中 这里是覆盖写)
    如果没有该文件,那么系统会自动创建一个文件
  2. ls -al > 文件(功能描述:列表的内容追加到文件的末尾)
  3. cat 文件1 > 文件2(功能描述:将文件1的内容覆盖到文件2)
  4. echo '内容' >> 文件(功能描述:将文件1的内容覆盖到文件2)
-----案例1:将 /home 目录下的文件列表写入到 /home/info.txt文件中-----
[root@SanxCentOS7 home]# ls -l /home/
drwxr-xr-x. 2 root     root     4096 108 16:15 bbb
drwx------. 5 ben      ben      4096 107 20:41 ben
-rw-r--r--. 1 root     root        6 109 15:06 mydate.txt
drwx------. 5 sanx     sanx     4096 107 15:24 sanx
drwx------. 3 xiaohong xiaohong 4096 107 15:33 test

-----系统自动创建一个叫 info.txt 的文件-----
[root@SanxCentOS7 home]# ls -l /home/ > /home/info.txt
[root@SanxCentOS7 home]# ls -l
drwxr-xr-x. 2 root     root     4096 108 16:15 bbb
drwx------. 5 ben      ben      4096 107 20:41 ben
-rw-r--r--. 1 root     root      363 109 15:30 info.txt
-rw-r--r--. 1 root     root        6 109 15:06 mydate.txt
drwx------. 5 sanx     sanx     4096 107 15:24 sanx
drwx------. 3 xiaohong xiaohong 4096 107 15:33 test
[root@SanxCentOS7 home]# cat info.txt 
drwxr-xr-x. 2 root     root     4096 108 16:15 bbb
drwx------. 5 ben      ben      4096 107 20:41 ben
-rw-r--r--. 1 root     root        0 109 15:30 info.txt
-rw-r--r--. 1 root     root        6 109 15:06 mydate.txt
drwx------. 5 sanx     sanx     4096 107 15:24 sanx
drwx------. 3 xiaohong xiaohong 4096 107 15:33 test

-----证明了 >指令 是覆盖写的-----
[root@SanxCentOS7 home]# echo 'ok' > info.txt 
[root@SanxCentOS7 home]# cat info.txt 
ok

-----将日期信息写入到文件中-----
[root@SanxCentOS7 home]# cal
      十月 2022     
日 一 二 三 四 五 六
                   1
 2  3  4  5  6  7  8
 9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31

-----可以看到是自动创建的文件-----
[root@SanxCentOS7 home]# cal >> /home/mycal
[root@SanxCentOS7 home]# ls
bbb  ben  info.txt  mycal  mydate.txt  sanx  test
[root@SanxCentOS7 home]# cat mycal
      十月 2022     
日 一 二 三 四 五 六
                   1
 2  3  4  5  6  7  8
 9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31

-----可以看到 >>指令 是追加进行的-----
[root@SanxCentOS7 home]# cal >> /home/mycal
[root@SanxCentOS7 home]# cat mycal
      十月 2022     
日 一 二 三 四 五 六
                   1
 2  3  4  5  6  7  8
 9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31
      十月 2022     
日 一 二 三 四 五 六
                   1
 2  3  4  5  6  7  8
 9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31

-----案例2:将/etc/profile 下的文件覆盖到 /home/myprofile下------
[root@SanxCentOS7 home]# cat /etc/profile >> /home/myprofile
[root@SanxCentOS7 home]# ls
bbb  ben  info.txt  mycal  mydate.txt  myprofile  sanx  test

ln 指令

软链接也称为符号链接,类似于 Windows 里的快捷方式,主要存放了链接其他文件的路径

基本语法:ln -s [原文件或目录] [软链接名](功能描述:给原文件创建一个软链接)

注意事项:

  1. 当我们使用 pwd指令 查看目录时,任然看到的是软链接所在的目录
------案例1:在 /home 下创建一个软连接到 /root-----
[root@SanxCentOS7 home]# ln -s /root/ /home/myroot
[root@SanxCentOS7 home]# ls
bbb  ben  info.txt  mycal  mydate.txt  myprofile  myroot  sanx  test
[root@SanxCentOS7 home]# ls -l
drwxr-xr-x. 2 root     root     4096 108 16:15 bbb
drwx------. 5 ben      ben      4096 107 20:41 ben
-rw-r--r--. 1 root     root        3 109 15:31 info.txt
-rw-r--r--. 1 root     root      324 109 15:36 mycal
-rw-r--r--. 1 root     root        6 109 15:06 mydate.txt
-rw-r--r--. 1 root     root     1819 109 15:38 myprofile
lrwxrwxrwx. 1 root     root        6 109 16:36 myroot -> /root/  # 这个就是软链接的指向文件
drwx------. 5 sanx     sanx     4096 107 15:24 sanx
drwx------. 3 xiaohong xiaohong 4096 107 15:33 test

-----ls查看文件目录下的文件,发现都是/root下的文件-----
[root@SanxCentOS7 home]# cd myroot/
[root@SanxCentOS7 myroot]# ls -l
-rw-------. 1 root root 1887 106 23:18 anaconda-ks.cfg
-rw-r--r--. 1 root root  131 107 14:42 Hello.java
-rw-r--r--. 1 root root 1918 106 23:21 initial-setup-ks.cfg
-rw-r--r--. 1 root root    0 108 17:01 pig.txt
drwxr-xr-x. 2 root root 4096 106 23:22 公共
drwxr-xr-x. 2 root root 4096 106 23:22 模板
drwxr-xr-x. 2 root root 4096 106 23:22 视频
drwxr-xr-x. 2 root root 4096 106 23:22 图片
drwxr-xr-x. 2 root root 4096 106 23:22 文档
drwxr-xr-x. 2 root root 4096 106 23:22 下载
drwxr-xr-x. 2 root root 4096 106 23:22 音乐
drwxr-xr-x. 2 root root 4096 106 23:22 桌面

-----删除软链接,rm /home/root 注意,不要加 “/” 不然系统会认为这是一个文件-----
[root@SanxCentOS7 myroot]# cd /home/
[root@SanxCentOS7 home]# rm /home/myroot/
rm: 无法删除"/home/myroot/": 是一个目录
[root@SanxCentOS7 home]# rm /home/myroot
rm:是否删除符号链接 "/home/myroot"?y
[root@SanxCentOS7 home]# ll
drwxr-xr-x. 2 root     root     4096 108 16:15 bbb
drwx------. 5 ben      ben      4096 107 20:41 ben
-rw-r--r--. 1 root     root        3 109 15:31 info.txt
-rw-r--r--. 1 root     root      324 109 15:36 mycal
-rw-r--r--. 1 root     root        6 109 15:06 mydate.txt
-rw-r--r--. 1 root     root     1819 109 15:38 myprofile
drwx------. 5 sanx     sanx     4096 107 15:24 sanx
drwx------. 3 xiaohong xiaohong 4096 107 15:33 test

history 指令

查看已经执行过历史命令,也可以执行历史命令

基本语法:history(功能描述:查看已经执行过历史命令)

注意事项:

  1. ! 指令编号 可以快速执行这条指令
  2. history 你要查看的命令数n 可以快速查看最近执行的n条指令
-----案例1:查看最近执行的10条指令 history 10-----
[root@SanxCentOS7 home]# history 10
  246  ls -l
  247  cd myroot/
  248  ls
  249  ls -l
  250  cd /home/
  251  rm /home/myroot/
  252  rm /home/myroot
  253  ll
  254  history
  255  history 10

-----案例2:执行某个编号的指令 !+编号 -----
  250  cd /home/
  251  rm /home/myroot/
  252  rm /home/myroot
  253  ll
  254  history
  255  history 10
  256  man ln
  257  history
[root@SanxCentOS7 home]# !256
man ln

执行 !256 后的结果,也就是执行 man ln
GIF 2022-10-9 16-48-13


5.5 时间日期类

date 指令

date 指令 是显示当前的日期

基本语法:

  1. date(功能描述:显示当前时间)
  2. date +%Y(功能描述:显示当前年份)
  3. date +%m(功能描述:显示当前月份)
  4. date +%d(功能描述:显示当前是哪一天)
  5. date "+%Y-%m-%d %H:%M:%S"(功能描述:显示年月日时分秒)
[root@SanxCentOS7 home]# date
202210月 09日 星期日 17:03:06 CST

[root@SanxCentOS7 home]# date +%Y
2022
[root@SanxCentOS7 home]# date "+%Y %m"
2022 10
[root@SanxCentOS7 home]# date "+%Y-%m"
2022-10

[root@SanxCentOS7 home]# date "+%Y-%m-%d"
2022-10-09
[root@SanxCentOS7 home]# date "+%Y-%m-%d %H"
2022-10-09 17
[root@SanxCentOS7 home]# date "+%Y-%m-%d %H-%M"
2022-10-09 17-06

-----表达式的符号可以随意改动,中间的符号就是用来符合人类习惯的-----
[root@SanxCentOS7 home]# date "+%Y-%m-%d %H-%M-%S"
2022-10-09 17-06-36
[root@SanxCentOS7 home]# date "+%Y-%m-%d %H:%M:%Ss"
2022-10-09 17:06:54s

date 设置日期

基本语法:date -s 字符串时间

-----手动设置时间-----
[root@SanxCentOS7 home]#  date -s "2020-11-11 12:12:12"
20201111日 星期三 12:12:12 CST
[root@SanxCentOS7 home]# date
20201111日 星期三 12:12:15 CST

-----恢复网络同步时间-----
[root@SanxCentOS7 home]# ntpdate asia.pool.ntp.org
 9 Oct 17:16:46 ntpdate[16939]: step time server 202.118.1.81 offset 60239058.815056 sec
[root@SanxCentOS7 home]# date
202210月 09日 星期日 17:16:52 CST

设置完想恢复与网络时间同步怎么办?
执行指令:ntpdate asia.pool.ntp.org


cal 指令

查看日历指令 cal

基本语法:cal [选项](功能描述:不加选项,显示本月日历)

-----显示当前的日历-----
[root@SanxCentOS7 home]# cal
      十月 2022     
日 一 二 三 四 五 六
                   1
 2  3  4  5  6  7  8
 9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31

-----显示2020年整年的日历-----
[root@SanxCentOS7 home]# cal 2020
                               2020                               

        一月                   二月                   三月        
日 一 二 三 四 五 六   日 一 二 三 四 五 六   日 一 二 三 四 五 六
          1  2  3  4                      1    1  2  3  4  5  6  7
 5  6  7  8  9 10 11    2  3  4  5  6  7  8    8  9 10 11 12 13 14
12 13 14 15 16 17 18    9 10 11 12 13 14 15   15 16 17 18 19 20 21
19 20 21 22 23 24 25   16 17 18 19 20 21 22   22 23 24 25 26 27 28
26 27 28 29 30 31      23 24 25 26 27 28 29   29 30 31

        四月                   五月                   六月        
日 一 二 三 四 五 六   日 一 二 三 四 五 六   日 一 二 三 四 五 六
          1  2  3  4                   1  2       1  2  3  4  5  6
 5  6  7  8  9 10 11    3  4  5  6  7  8  9    7  8  9 10 11 12 13
12 13 14 15 16 17 18   10 11 12 13 14 15 16   14 15 16 17 18 19 20
19 20 21 22 23 24 25   17 18 19 20 21 22 23   21 22 23 24 25 26 27
26 27 28 29 30         24 25 26 27 28 29 30   28 29 30
                       31
        七月                   八月                   九月        
日 一 二 三 四 五 六   日 一 二 三 四 五 六   日 一 二 三 四 五 六
          1  2  3  4                      1          1  2  3  4  5
 5  6  7  8  9 10 11    2  3  4  5  6  7  8    6  7  8  9 10 11 12
12 13 14 15 16 17 18    9 10 11 12 13 14 15   13 14 15 16 17 18 19
19 20 21 22 23 24 25   16 17 18 19 20 21 22   20 21 22 23 24 25 26
26 27 28 29 30 31      23 24 25 26 27 28 29   27 28 29 30
                       30 31
        十月                  十一月                 十二月       
日 一 二 三 四 五 六   日 一 二 三 四 五 六   日 一 二 三 四 五 六
             1  2  3    1  2  3  4  5  6  7          1  2  3  4  5
 4  5  6  7  8  9 10    8  9 10 11 12 13 14    6  7  8  9 10 11 12
11 12 13 14 15 16 17   15 16 17 18 19 20 21   13 14 15 16 17 18 19
18 19 20 21 22 23 24   22 23 24 25 26 27 28   20 21 22 23 24 25 26
25 26 27 28 29 30 31   29 30                  27 28 29 30 31

5.6 搜索查找类

find 指令

find 指令 将从指定目录向下递归地便利其各个子目录,将满足条件的文件或者目录显示在终端

基本语法:find [搜索范围] [选项]

选项说明:

选项功能
-name<查询方式>按照指定文件名查找模式查找文件
-user<用户名>查找属于指定用户名所有文件
-size<文件大小>按照指定的文件大小查找文件
-----按文件名查找/home目录下的hello.txt文件-----
[root@SanxCentOS7 ~]# find /home -name hello.txt
/home/bbb/hello.txt

-----按用户名查找/opt目录下,用户名称为nobody的文件-----
[root@SanxCentOS7 ~]# find /opt -user nobody #没找到文件就不会显示什么
[root@SanxCentOS7 ~]# find /opt -user root
/opt
/opt/rh

-----查找整个Linux系统下大于200M的文件(+n大于 -n小于 n等于 单位有k、M、G)-----
[root@SanxCentOS7 ~]# find / -size +200M
/proc/kcore
find: ‘/proc/2708/task/2708/fd/5’: 没有那个文件或目录
find: ‘/proc/2708/task/2708/fdinfo/5’: 没有那个文件或目录
find: ‘/proc/2708/fd/6’: 没有那个文件或目录
find: ‘/proc/2708/fdinfo/6’: 没有那个文件或目录
/run/media/root/CentOS 7 x86_64/LiveOS/squashfs.img

[root@SanxCentOS7 ~]# cd /run/media/root/CentOS\ 7\ x86_64/LiveOS/
[root@SanxCentOS7 LiveOS]# ls
squashfs.img  TRANS.TBL
[root@SanxCentOS7 LiveOS]# ls -l
总用量 509393
-rw-r--r--. 3 root root 521617408 1027 2020 squashfs.img
-r--r--r--. 1 root root       224 114 2020 TRANS.TBL
[root@SanxCentOS7 LiveOS]# ls -lh
总用量 498M
-rw-r--r--. 3 root root 498M 1027 2020 squashfs.img
-r--r--r--. 1 root root  224 114 2020 TRANS.TBL

locate 指令

locate 指令 可以快速定位文件路径

locate指令利用事先建立的系统中所有文件名称及路径的locate数据库,实现快速定位给定的文件

locate指令无需遍历整个文件系统,查询速度较快,为了保证查询结果的准确度,管理员必须定期更新locate时刻

基本语法:locate 搜索文件

特别说明:由于 locate 指令基于数据库进行查询,所以第一次运行前,必须使用 updatedb指令 创建 locate数据库

-----使用locate指令快速定位hello.txt文件所在目录-----
[root@SanxCentOS7 LiveOS]# updatedb
[root@SanxCentOS7 LiveOS]# locate hello.txt
/home/bbb/hello.txt

补充:which指令,可以查看某个指令在哪个目录下

语法:which 你要查看的命令

[root@SanxCentOS7 LiveOS]# which ls
alias ls='ls --color=auto'
	/usr/bin/ls
[root@SanxCentOS7 LiveOS]# which reboot
/usr/sbin/reboot

grep 指令

grep指令 过滤查找,管道符 “|”,表示将前一个命令的处理结果输出传递给后面的命令处理

例如我查找一个a.txt文件中是否有字符串'hello'
那么,bash下的命令可以是 cat a.txt | grep "hello"
此处管道符 "|" 就是把前面的命令结果交给后面处理的
image-20221030142751356

基本语法:grep [选项] 查找内容 源文件

常用选项

选项功能
-n显示匹配行及行号
-i忽略字母的大小写
-----在hello.txt文件中,查找yes所在行,并显示行号-----
写法1:cat /home/bbb/hello.txt
[root@SanxCentOS7 LiveOS]# cat /home/bbb/hello.txt 
ok
fine
yes
ohyes
hello
test
yes
YES
[root@SanxCentOS7 LiveOS]# cat /home/bbb/hello.txt | grep -n "yes"
3:yes
4:ohyes
7:yes

写法2:grep -n "yes" /home/bbb/hello.txt
[root@SanxCentOS7 LiveOS]# grep -n "yes" /home/bbb/hello.txt
3:yes
4:ohyes
7:yes

[root@SanxCentOS7 LiveOS]# cat /home/bbb/hello.txt | grep -n -i "yes"
3:yes
4:ohyes
7:yes
8:YES

在 grep 命令中,“^” 表示行首(即开头)。所以,“^-” 表示以 “-” 开头的行,“$” 表示行尾(即结尾)

5.7 压缩和解压类

gzip/gunzip 指令

gzip用于压缩文件,gunzip用于解压文件

基本语法

  1. gzip 文件(功能描述:压缩文件,只能将文件压缩为 “.gz文件”)
  2. gunzip 文件.gz(功能描述:解压缩文件命令)
-----gzip压缩,将/home下的hello.txt文件进行压缩-----
[root@SanxCentOS7 LiveOS]# gzip /home/bbb/hello.txt 
[root@SanxCentOS7 LiveOS]# cd /home/bbb/
[root@SanxCentOS7 bbb]# ls -lh
总用量 4.0K
-rw-r--r--. 1 root root  0 108 16:19 hello2.txt
-rw-r--r--. 1 root root 61 1030 14:40 hello.txt.gz

-----gunzip压缩,将/home下的hello.txt.gz文件进行解压缩-----
[root@SanxCentOS7 bbb]# gunzip hello.txt.gz 
gzip: hello.txt already exists; do you wish to overwrite (y or n)? y
[root@SanxCentOS7 bbb]# ls -lh
总用量 4.0K
-rw-r--r--. 1 root root 37 1030 14:40 hello.txt

gzip 压缩,压缩为 hello.txt.gz
image-20221030144905341


zip/unzip 指令

zip 用于压缩文件,unzip 用于解压的,这个在项目打包发布中很有用

基本语法:

  1. zip [选项] xxx.zip 将要压缩的内容(功能描述:压缩文件和目录的命令)
  2. unzip [选项] xxx.zip(功能描述:解压缩文件)

zip 常用选项
-r:递归压缩,即压缩目录

uzip 常用选项
-d <目录>:指定解压后文件的存放目录

-----将/home下的所有文件进行压缩成 myhome.zip-----
[root@SanxCentOS7 ~]# zip -r myhome.zip /home/
[root@SanxCentOS7 ~]# ls
anaconda-ks.cfg  Hello.java  initial-setup-ks.cfg  myhome.zip  pig.txt  公共  模板  视频  图片  文档  下载  音乐  桌面

-----将 myhome.zip 解压到 /opt/tmp 目录下-----
[root@SanxCentOS7 ~]# mkdir /opt/tmp
[root@SanxCentOS7 ~]# unzip -d /opt/tmp/ /root/myhome.zip
[root@SanxCentOS7 /]# cd /opt/
[root@SanxCentOS7 opt]# ls
rh  tmp
[root@SanxCentOS7 opt]# cd tmp/
[root@SanxCentOS7 tmp]# ls
home

使用了 zip -r myhome.zip /home/ 的结果
image-20221030150449158


tar 指令

tar 指令 是打包指令,最后打包后的文件是 .tar.gz 的文件

基本语法:tar [选项] xxx.tar.gz 打包的内容(功能描述:打包目录压缩后的文件格式 .tar.gz

选项说明:

选项功能
-c产生 .tar打包文件
-v显示详细信息
-f指定压缩后的文件名
-z打包同时压缩
-x解包 .tar文件

一般的,常用的压缩选项是 -zcvf 连用,解压缩则是 -zxvf

-----案例1:压缩多个文件,将/home/pig.txt和/home/cat.txt压缩成pc.tar.gz-----
[root@SanxCentOS7 home]# ls
bbb  ben  info.txt  mycal  mydate.txt  myprofile  sanx  test
[root@SanxCentOS7 home]# touch pig.txt
[root@SanxCentOS7 home]# touch cat.txt
[root@SanxCentOS7 home]# ls
bbb  ben  cat.txt  info.txt  mycal  mydate.txt  myprofile  pig.txt  sanx  test
[root@SanxCentOS7 home]# tar -zcvf pc.tar.gz /home/pig.txt /home/cat.txt 
tar: 从成员名中删除开头的“/”
/home/pig.txt
/home/cat.txt
[root@SanxCentOS7 home]# ls
bbb  ben  cat.txt  info.txt  mycal  mydate.txt  myprofile  pc.tar.gz  pig.txt  sanx  test

-----案例2:将/home的文件夹压缩成myhome.tar.gz-----
[root@SanxCentOS7 home]# tar -zcvf myhome.tar.gz /home/
省略压缩过程......
[root@SanxCentOS7 home]# ls
bbb  ben  cat.txt  info.txt  mycal  mydate.txt  myhome.tar.gz  myprofile  pc.tar.gz  pig.txt  sanx  test

-----案例3:将pc.tar.gz解压到当前目录,切换到/opt/-----
[root@SanxCentOS7 home]# ls
bbb  ben  cat.txt  info.txt  mycal  mydate.txt  myhome.tar.gz  myprofile  pc.tar.gz  pig.txt  sanx  test
[root@SanxCentOS7 home]# rm cat.txt 
rm:是否删除普通空文件 "cat.txt"?y
[root@SanxCentOS7 home]# rm pig.txt 
rm:是否删除普通空文件 "pig.txt"?y
[root@SanxCentOS7 home]# ls
bbb  ben  info.txt  mycal  mydate.txt  myhome.tar.gz  myprofile  pc.tar.gz  sanx  test
[root@SanxCentOS7 home]# tar -zxvf pc.tar.gz 
home/pig.txt
home/cat.txt
[root@SanxCentOS7 home]# ls
bbb  ben  home  info.txt  mycal  mydate.txt  myhome.tar.gz  myprofile  pc.tar.gz  sanx  test
[root@SanxCentOS7 home]# cd home/
[root@SanxCentOS7 home]# ls
cat.txt  pig.txt

-----案例4:将myhome.tar.gz解压到/opt/tmp2目录下-----
[root@SanxCentOS7 home]# mkdir /opt/tmp2
[root@SanxCentOS7 home]# cd /opt/
[root@SanxCentOS7 opt]# ls
rh  tmp  tmp2
[root@SanxCentOS7 opt]# cd /home/
[root@SanxCentOS7 home]# ls
bbb  ben  home  info.txt  mycal  mydate.txt  myhome.tar.gz  myprofile  pc.tar.gz  sanx  test
[root@SanxCentOS7 home]# tar -zxvf /home/myhome.tar.gz -C /opt/tmp2/
[root@SanxCentOS7 home]# cd /opt/tmp2
[root@SanxCentOS7 tmp2]# ls
home
[root@SanxCentOS7 tmp2]# cd home/
[root@SanxCentOS7 home]# ls
bbb  ben  cat.txt  info.txt  mycal  mydate.txt  myprofile  pc.tar.gz  pig.txt  sanx  test
[root@SanxCentOS7 home]# pwd
/opt/tmp2/home

注意:此处的 -C 是 代表着你解压的包需要解压到哪一个文件目录里
tar -zxvf xxx.tar.gz -C 解压目的文件目录
解压xxx.tar.gz 到 解压目的文件目录

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.coloradmin.cn/o/152026.html

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈,一经查实,立即删除!

相关文章

交通部互通互联二维码之发卡机构公钥证书

背景 随话说的好啊&#xff0c;好比不如烂笔头&#xff0c;之前开发联调OK后&#xff0c;闲置了半年&#xff0c;结果今天再去搞公钥&#xff0c;发现完全忘记了生成规则。审核 有病 哪里来的广告&#xff1f; 特此&#xff0c;记录一下我们的过程&#xff0c;以便后面再出现…

gitee的ssh配置

#1.配置自己的gitee郵箱&#xff0c;返回直接輸入郵箱 ssh-keygen -t rsa -C "郵箱" #2.複製郵箱的ssh秘鑰 cat ~/.ssh/id_rsa.pub #在個人配置添加自己的ssh秘鑰

【jQuery】常用API——jQuery样式

jQuery 给我们封装了很多动画效果&#xff0c;最为常见的如下&#xff1a;一、显示隐藏切换效果1. 显示语法规范 show([speed,[easing],[fn]]);显示参数&#xff1a;&#xff08;1&#xff09;参数都可以省略&#xff0c; 无动画直接显示。&#xff08;2&#xff09;speed&…

(十五)一篇文章搞懂Java的内部类

目录 1.概述: 2.内部类之一:静态内部类 3.内部类之二:成员内部类 4.内部类之三:局部内部类 5.内部类之四:匿名内部类 1.概述: 内部类就是定义在一个类里面的类&#xff0c;里面的类可以理解成(寄生)。 2.内部类的使用场景、作用&#xff1a; ①当一个事务的内部&#xff0c;还…

前端如何上传图片文件

效果图html代码js效果图 效果&#xff1a; 这篇博客必须要后台调用你的js函数&#xff0c;如果后台不打算调用你的js函数可以放弃此篇博客了&#xff0c;或者自己将代码改良。如果后台接受该代码可以参考这篇文章&#xff1a;&#xff08;如果后台不是使用php,也没关系只要返…

.net工作流引擎ccflow集成并增加自定义功能

一、为什么需要自定义扩展1、第三方类库已满足大部分需求&#xff0c;剩下的根据具体业务需求抽象成公共功能进行扩展2、第三方呈现的web页面与原类库耦合度较高&#xff0c;希望在原页面上扩展而不影响原来的功能3、在完全不修改第三方类库及web页面的情况下&#xff0c;加入自…

【数据结构】堆

堆 堆的定义 &#xff08;最大&#xff09;堆是一个可以被看成一棵树的数组对象&#xff0c;满足如下性质: 堆中的父亲结点总大于或等于其左右孩子结点的值总是一棵完全二叉树 完全二叉树 若设二叉树的深度为h&#xff0c;除第 h 层外&#xff0c;其它各层 (1~h-1) 的结点…

1.1.1半导体基础知识

半导体基础知识 上学的时候大概是模电第一节就会讲完这&#xff0c;会详细的介绍什么是导体&#xff0c;绝缘体&#xff0c;半导体&#xff0c;本征半导体&#xff0c;然后接着详细的讲述本征半导体的结构&#xff0c;两种载流子&#xff0c;P,N杂质半导体&#xff0c;PN结以及…

Spring Boot自动配置--如何切换内置Web服务器

系列文章目录 Spring Boot[概述、功能、快速入门]_心态还需努力呀的博客-CSDN博客 Spring Boot读取配置文件内容的三种方式_心态还需努力呀的博客-CSDN博客 Spring Boot整合Junit_心态还需努力呀的博客-CSDN博客 该系列文章持续更新中~ 目录 系列文章目录 前言 一、默认…

【Python】python深拷贝和浅拷贝(二)

【Python】python深拷贝和浅拷贝&#xff08;二&#xff09; 前言 上一期我们介绍了Python中深拷贝和浅拷贝的定义以及它们在执行过程中内存结构&#xff0c;同时也给出了深拷贝和浅拷贝的方法。&#xff08;没有看上一期的朋友看这里&#xff0c;python深拷贝和浅拷贝&#…

架构设计---性能设计的详解

前言&#xff1a; 系统性能是互联网应用最核心的非功能性架构目标&#xff0c;系统因为高并发访问引起的首要问题就是性能的问题&#xff0c;高并发访问的情况下&#xff0c;系统因为资源不足&#xff0c;处理每个请求的时间都会变慢&#xff0c;看起来就是性能的变差。 因此…

什么是随机森林?

什么是随机森林&#xff1f; 随机森林是一种有监督的机器学习算法。由于其准确性&#xff0c;简单性和灵活性&#xff0c;它已成为最常用的一种算法。事实上&#xff0c;它可以用于分类和回归任务&#xff0c;再加上其非线性特性&#xff0c;使其能够高度适应各种数据和情况。 …

JavaSE初阶篇:系统环境变量path|classpath|JAVA_HOME

环境变量是为了 “在命令行窗口下”编译和运行Java程序而配置一、系统变量&#xff1a;Pathpath环境变量作用&#xff1a;将命令所在的路径配置到path中去&#xff0c;就相当于在计算机中“注册”了一样&#xff0c;以后找这个命令&#xff0c;会直接去你配置的路径下寻找。达到…

Revit中怎么使两面墙拉近时不自动连接?柱断梁墙功能

一、Revit中怎么使两面墙拉近时不自动连接? 问题&#xff1a;同材质的墙体在同一条直线上只要将其端点拖拽至一起就会融合成一道整墙体(如图-1、2所示)&#xff0c;但是在做一些较特殊的结构时我们不需要其连接成一道整墙&#xff0c;有没有什么办法能够设置呢? 我们可以通过…

避免Mysql插入重复数据的几种方法

1、前言 在平时对数据库操作时&#xff0c;有时候需要向数据库中插入一些数据&#xff0c;此时就需要使用数据库的插入语句&#xff0c;但是在向数据中库插入数据时&#xff0c;不能盲目插入&#xff0c;因为盲目的插入可能会造成数据重复&#xff0c;浪费数据库的资源&#x…

Pytest三种配置文件

&#x1f60e;&#x1f60e;原文出自&#xff1a;测个der&#xff0c;博主的公众号&#xff0c;格式美观一些。 配置介绍 pytest 的主配置文件&#xff0c;可以改变 pytest 的默认行为&#xff0c;执行 pytest -h&#xff0c;这里有很多配置均可用于 pytest.ini配置 (venv) …

HarmonyOS鸿蒙学习笔记(16)Canvas入门使用

Canvas入门指南1、Canvas代码结构2、简单案例2.1 fillStyle和fillRect 绘制蓝色矩形2.2 strokeRect和strokeStyle 绘制红色边框2.3 lineCap的使用2.4 lineJoin的使用2.5 closePath的使用3、参考资料1、Canvas代码结构 在使用Canvas的时候&#xff0c;需要向初始化RenderingCon…

第四十七讲:IPv6基础知识

一、IPv6网络元素及概念 IPv6的网络元素如下图所示。 节点&#xff1a;任何运行IPv6的设备&#xff0c;包括路由器和主机&#xff08;甚至还将包括PDA、冰箱、电视等&#xff09;。邻节点&#xff1a;连接到同一链路上的节点。这是一个非常重要的概念&#xff0c;因为IPv6的邻…

JS面试题--this指向+面试题

this其他补充 内置函数的绑定思考 01_一些函数的this分析 // 1.setTimeout原理 // function hySetTimeout(fn, duration) { // fn.call(window) // }// hySetTimeout(function() { // console.log(this) // window // }, 3000)// setTimeout(function() { // console.l…

EEG论文阅读和分析:《Differential entropy feature for EEG-based emotion classification》

论文阅读《Differential entropy feature for EEG-based emotion classification》 论文的核心是提出差分熵作为特征&#xff0c;并且对差分差分熵和比例差分熵等特征进行对比研究。 算法流程步骤&#xff1a; 采样过程&#xff1a; A.预处理 根据受试者的压力反应&#xf…