物理CPU个数
cat /proc/cpuinfo | grep "physical id"|sort|uniq|wc –l每个物理CPU中的core个数
cat /proc/cpuinfo |grep "cpu cores" |uniq逻辑CPU个数
cat /proc/cpuinfo|grep "processor"|wc -l
free -m #-m的意思是用M来做单位显示内容
total used free shared buffers cached
Disk /dev/sda: 500.1 GB, 500107862016 bytes
255 heads, 63 sectors/track, 60801 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x00062ae4
Device Boot Start End Blocks Id System
/dev/sda1 * 1 60037 482241536 83 Linux
/dev/sda2 60037 60802 6141953 5 Extended
/dev/sda5 60037 60802 6141952 82 Linux swap / Solaris
Filesystem Size Used Avail Use% Mounted on
/dev/sda1 453G 48G 383G 12% /
none 984M 188K 984M 1% /dev
none 990M 164K 990M 1% /dev/shm
none 990M 104K 990M 1% /var/run
none 990M 0 990M 0% /var/lock
50M /root
基本概念:特定时间间隔内运行队列中平均进程数可以反映系统的繁忙程度。
11:48:10 up 4:21, 1 user, load average: 0.00, 0.00, 0.00procs -----------memory---------- ---swap-- -----io---- -system-- ----cpu----
r b swpd free buff cache si so bi bo in cs us sy id wafile /sbin/init
/sbin/init: ELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked (uses shared libs), for GNU/Linux 2.6.15, stripped
表示系统是32位。
lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description: Ubuntu 10.10
Release: 10.10
Codename: maverick
lsof -i:80
COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME
apache2 1217 root 4u IPv6 8171 0t0 TCP *:www (LISTEN)
apache2 1263 www-data 4u IPv6 8171 0t0 TCP *:www (LISTEN)
apache2 1264 www-data 4u IPv6 8171 0t0 TCP *:www (LISTEN)
apache2 1265 www-data 4u IPv6 8171 0t0 TCP *:www (LISTEN)
apache2 1266 www-data 4u IPv6 8171 0t0 TCP *:www (LISTEN)
apache2 1267 www-data 4u IPv6 8171 0t0 TCP *:www (LISTEN)
apache2 1662 www-data 4u IPv6 8171 0t0 TCP *:www (LISTEN)
Ps -axu 获取终端上所有用户的有关进程
Ps -axu | apache ,特定进程top - 13:03:19 up 5:36, 1 user, load average: 0.15, 0.05, 0.01
Tasks: 134 total, 1 running, 133 sleeping, 0 stopped, 0 zombieTasks: 134 total进程总数
1 running正在运行的进程数
133 sleeping睡眠的进程数
0 stopped停止的进程数
0 zombie僵尸进程数
Cpu(s): 0.0% us用户空间占用CPU百分比
0.0% sy内核空间占用CPU百分比
0.0% ni用户进程空间内改变过优先级的进程占用CPU百分比
98.7% id空闲CPU百分比
0.0% wa等待输入输出的CPU时间百分比
0.0% hi
0.0% si
Mem: 2026372k total 物理内存总量
1027336k used 使用的物理内存总量
999036k free 空闲内存总量
715068k buffers 用作内核缓存的内存量
Swap: 6141948k total 交换区总量
0k used 使用的交换区总量
6141948k free 空闲交换区总量
120736k cached 缓冲的交换区总量。