root@zsc # format
Searching for disks...done
AVAILABLE DISK SELECTIONS:
0. c1t0d0 146Gcyl 14087 alt 2 hd 24 sec 848>
/pci@9,600000/SUNW,qlc@2/fp@0,0/ssd@w21000014c39d4d9d,0
1. c1t1d0 146Gcyl 14087 alt 2 hd 24 sec 848>
/pci@9,600000/SUNW,qlc@2/fp@0,0/ssd@w21000014c39d4d9b,0
从输出可以知道此服务器有2个scsi硬盘。
4、查看网络接口的状况,使用带选项的命令ifconfig –a.
root@zsc # ifconfig -a
lo0: flags=2001000849 mtu 8232 index 1
inet 127.0.0.1 netmask ff000000
ce0: flags=1000843 mtu 1500 index 2
inet 61.128.x.x netmask ffffff00 broadcast 61.128.x.255
ether 0:14:4f:1e:69:f3//ce0是网络接口的名字
ce1: flags=1000843 mtu 1500 index 3
inet 192.168.x.5 netmask ffffff00 broadcast 192.168.x.255
ether 0:14:4f:1e:69:f3//x是某个具体的数值,安全起见这样处理
从输出可知,本机有2个网络接口。如果网络接口配置错误或没有激活,将有可能在输出中看不见接口名称及状态。
5、查看CPU的个数,使用不带参数的命令mpstat。
root@db890 ~#mpstat //这个命令也是查看CPU负载的工具
CPU minf mjf xcalintr ithrcsw icsw migr smtxsrw sysclusr syswt idl
0 0 1136 3 1 67 1 1 6 1 93 0 1 494
1 0 1101 25 22 67 1 1 6 1 85 0 1 495
2 0 1121 3 1 68 1 1 6 1 91 0 1 495
3 0 1129 3 1 69 1 1 6 1 95 0 1 495
4 0 1126 3 1 69 1 1 5 1 95 0 1 495
5 0 1125 129126 66 1 1 5 1 90 0 1 495
6 0 1123 4 1 68 1 1 6 1 92 0 1 495
7 0 1105 242140 65 1 1 7 1 89 0 0 495
从输出可知此服务器有8个cpu,此处按0-7的序号开始;有些输出不会以顺序序号开始,但可以从行数得知cpu数目(有多少行就有多少个cpu)。
标签: