centos7.6查看系统各种信息

一、分区情况
df -h
二、安装的软件包
rpm -qa | more
三、查看端口
netstat -tlunp
四、查看语言字符集
echo $LANG
五、查看登陆的用户
whoami
id
六 、查看时间
date
uptime
七、查看运行的进程
ps -ef
八、查看主机名
hostname
九、查看用户、组及密码
cat /ect/passwd
cat /etc/group
cat /etc/shadow

你可能感兴趣的:(centos7.6查看系统各种信息)