共计 963 个字符,预计需要花费 3 分钟才能阅读完成。
系统
1
2
3 4 5
6 7
8
|
# uname -a # head -n 1 /etc/issue # cat /proc/cpuinfo # hostname # lspci -tv # lsusb -tv # lsmod # env
|
资源
1
2
3 4 5
6 7
|
# free -m # df -h # du -sh < 目录名 > # grep MemTotal /proc/meminfo # grep MemFree /proc/meminfo # uptime # cat /proc/loadavg
|
磁盘和分区
1
2
3 4 5
|
# mount | column -t # fdisk -l # swapon -s # hdparm -i /dev/hda # dmesg | grep IDE
|
网络
1
2
3 4 5
6
|
# ifconfig # iptables -L # route -n # netstat -lntp # netstat -antp # netstat -s
|
进程
用户
1
2
3 4 5
6
|
# w # id < 用户名 > # last # cut -d: -f1 /etc/passwd # cut -d: -f1 /etc/group # crontab -l
|
服务
1
2
|
# chkconfig --list # chkconfig --list | grep on
|
程序
查看网卡型号
1
|
# lspci | grep Ethernet
|
查看内存和 cpu 最直接最常用的命令
1
2
|
# free # cat /proc/cpuinfo
|
查看硬盘信息(查看硬盘型号和硬盘序列号)