1. 程式人生 > >Linux瑣碎知識(Tue-Aug-21-01)

Linux瑣碎知識(Tue-Aug-21-01)

rod 一次 bugs last news hist 設備 知識 選項

查看歷史操作

history 10(列出最近的10條操作)

!105(重復執行第105條命令)

!!(重復執行上一條命令)

!last(執行最後一次以last開頭的命令)

history | more(逐條列出歷史指令)

history -c(清空所有的歷史指令)

日誌

/var/log/message 系統啟動後的信息和錯誤日誌,是Red Hat Linux中最常用的日誌之一
/var/log/secure 與安全相關的日誌信息
/var/log/maillog 與郵件相關的日誌信息
/var/log/cron 與定時任務相關的日誌信息
/var/log/spooler 與UUCP和news設備相關的日誌信息
/var/log/boot.log 守護進程啟動和停止相關的日誌消息

uname -a # 查看內核/操作系統/CPU信息

[root@MoKin ~]# cat -n /etc/issue
1 \S
2 Kernel \r on an \m
3
[root@MoKin ~]# cat -b /etc/issue
1 \S
2 Kernel \r on an \m

cat -n和cat -b的區別在於:-b:列出行號,僅針對非空白行做行號顯示,空白行不標行號;-n:列印出行號,連同空白行也會有行號,與 -b 的選項不同;

查看CentOS的版本:

[root@MoKin etc]# cat *-release
CentOS Linux release 7.5.1804 (Core)
NAME="CentOS Linux"
VERSION="7 (Core)"
ID="centos"
ID_LIKE="rhel fedora"
VERSION_ID="7"
PRETTY_NAME="CentOS Linux 7 (Core)"
ANSI_COLOR="0;31"
CPE_NAME="cpe:/o:centos:centos:7"
HOME_URL="https://www.centos.org/"
BUG_REPORT_URL="https://bugs.centos.org/"

CENTOS_MANTISBT_PROJECT="CentOS-7"
CENTOS_MANTISBT_PROJECT_VERSION="7"
REDHAT_SUPPORT_PRODUCT="centos"
REDHAT_SUPPORT_PRODUCT_VERSION="7"

CentOS Linux release 7.5.1804 (Core)
CentOS Linux release 7.5.1804 (Core)

Linux瑣碎知識(Tue-Aug-21-01)