查看系统版本信息
#Ubuntu cat /etc/lsb-release #CentOS cat /etc/redhat-release #or lsb_release -a
查看系统运行时间
uptime
查看系统负载
top
查看硬盘、内存可用空间
#内存(按MB) free -m #内存(按GB) free -g #硬盘 df -h
查看端口使用情况
netstat -ant #查看谁在使用端口8080 lsof -i:8080
查看hostname
hostname #CentOS hostnamectl status
查看系统时间
date
文章评论