1. 程式人生 > >002---Linux系統優化

002---Linux系統優化

系統優化 3.1 class 主機名 內核版本 eas 防火 關閉selinux redhat

Linux版本相關命令

  • 查看系統版本:cat /etc/redhat-release
  • 查看系統內核版本以及位數:uname -r
[root@hostname1 ~]# cat /etc/redhat-release 
CentOS Linux release 7.6.1810 (Core) 
[root@hostname1 ~]# uname -r
3.10.0-957.el7.x86_64

PS1

變量名,系統變量一般都是大寫。

[root@hostname1 ~]# echo $PS1
[\u@\h \W]\$
[root@hostname1 ~]# # \u-->當前用戶名:whoami
[root@hostname1 ~]# # \h-->當前主機名:hostname
[root@hostname1 ~]# # \W-->當前目錄:pwd
[root@hostname1 ~]# whoami
root
[root@hostname1 ~]# hostname
hostname1
[root@hostname1 ~]# pwd
/root

修改PS1:加時間

[root@hostname1 ~]# PS1='[\u@\h \W \t]\$'
[root@hostname1 ~ 20:34:51]#

linux系統優化

添加用戶

關閉SELinux

關閉防火墻

002---Linux系統優化