RHCE认证笔记


相关知识

RHCE:Red Hat Certified Engineer. RedHat 认证工程师

CentOS:Community Enterprise Operating System. 社区企业操作系统,免费使用

RHEL:Red Hat Enterprise Linux. 红帽企业Linux系统,由RedHat提供服务,付费使用

RHEL 7&8 命令笔记

pidof

# 用于查询指定服务进程的PID值
[root@linuxprobe ~]# pidof sshd
2156

killall

# 用于终止指定服务所对应的所有进程
[root@linuxprobe ~]# pidof httpd
13581 13580 13579 13578 13577 13576
[root@linuxprobe ~]# killall httpd

uname

# 查看系统内核
[root@linuxprobe ~]# uname -a
Linux linuxprobe.com 3.10.0-123.el7.x86_64 #1 SMP Mon May 5 11:16:57 EDT 2017 x86_64 x86_64 x86_64 GNU/Linux
# 同上
[root@linuxprobe ~]# cat /etc/redhat-release
Red Hat Enterprise Linux Server release 7.0 (Maipo)

uptime

# 显示系统当前时间、已运行时间、终端数量、平均负载等信息
[root@linuxprobe ~]# uptime
22:49:55 up 10 min, 2 users, load average: 0.01, 0.19, 0.18

sosreport

# 用于收集系统配置及架构信息并输出诊断文档
[root@linuxprobe ~]# sosreport
sosreport (version 3.0)
........省略.........

No changes will be made to system configuration.
Press ENTER to continue, or CTRL-C to quit. 此处敲击回车来确认收集信息

Please enter your first initial and last name [linuxprobe.com]:此处敲击回车来确认主机编号
Please enter the case number that you are generating this report for:此处敲击回车来确认主机编号
Running plugins. Please wait ...
Running 70/70: yum...
Creating compressed archive...
Your sosreport has been generated and saved in:

/var/tmp/sosreport-linuxprobe.com-20170905230631.tar.xz
The checksum is: 79436cdf791327040efde48c452c6322
Please send this file to your support representative.

file

# 用于查看文件的类型
[root@linuxprobe ~]# file anaconda-ks.cfg 
anaconda-ks.cfg: ASCII text
[root@linuxprobe ~]# file /dev/sda
/dev/sda: block special

wc

# 用于统计指定文本的行数、字数、字节数
[root@linuxprobe ~]# wc -l /etc/passwd
38 /etc/passwd

cut

# 用于按列提取文本字符,通常配合head和grep使用
[root@linuxprobe ~]# cut -d: -f1 /etc/passwd
root
bin
daemon

重定向

符号 作用
命令 > 文件 将标准输出重定向到一个文件中(清空原有文件的数据)
命令 < 文件 将文件作为命令的标准输入
命令 2> 文件 将错误输出重定向到一个文件中(清空原有文件的数据)
命令 >> 文件 将标准输出重定向到一个文件中(追加到原有内容的后面)
命令 << 分界符 从标准输入中读入,直到遇见分界符才停止
命令 2>> 文件 将错误输出重定向到一个文件中(追加到原有内容的后面)
命令 >> 文件 2>&1 或 命令 &>> 文件 将标准输出与错误输出共同写入到文件中(追加到原有内容的后面)

Vim快捷键


评论