使用 Linux 的过程中,我们经常会想看看系统的信息、状态。这里做一个速查表。
系统相关
1 2 3 4 5 6 7 8 9 10
| lsb_release -a head -n 1 /etc/issue cat /proc/version uname -a cat /proc/cpuinfo hostname env lsmod uptime cat /proc/loadavg
|
内存与外存
1 2 3 4 5 6 7 8 9 10
| free -m grep MemTotal /proc/meminfo grep MemFree /proc/meminfo df -h fdisk -l swapon -s hdparm -i /dev/hda dmesg | grep IDE mount | column -t du -sh <目录名>
|
网络状态
1 2 3 4 5 6
| ifconfig iptables -L route -n netstat -lntp netstat -antp netstat -s
|
用户状态相关
1 2 3 4 5
| w who id <用户名> cut -d: -f1 /etc/passwd cut -d: -f1 /etc/group
|
进程状态相关