|
|
ping:

内存:
- [root@www23265u ~]# free -m
- total used free shared buffers cached
- Mem: 498 162 336 0 22 114
- -/+ buffers/cache: 25 472
- Swap: 2000 0 2000
复制代码 硬盘大小:
- [root@www23265u ~]# df -h
- Filesystem Size Used Avail Use% Mounted on
- /dev/hda2 17G 171M 16G 2% /
- /dev/hda1 99M 12M 82M 13% /boot
- tmpfs 250M 0 250M 0% /dev/shm
复制代码 网速:
- [root@www23265u ~]# wget wget http://cachefly.cachefly.net/100mb.test
- --2011-09-25 17:32:13-- http://wget/
- Resolving wget... failed: Name or service not known.
- wget: unable to resolve host address `wget'
- --2011-09-25 17:32:13-- http://cachefly.cachefly.net/100mb.test
- Resolving cachefly.cachefly.net... 204.93.150.150
- Connecting to cachefly.cachefly.net|204.93.150.150|:80... connected.
- HTTP request sent, awaiting response... 200 OK
- Length: 104857600 (100M) [application/octet-stream]
- Saving to: `100mb.test'
- 100%[======================================>] 104,857,600 24.1M/s in 4.6s
- 2011-09-25 17:32:22 (21.8 MB/s) - `100mb.test' saved [104857600/104857600]
- FINISHED --2011-09-25 17:32:22--
- Downloaded: 1 files, 100M in 4.6s (21.8 MB/s)
复制代码 硬盘性能:
- [root@www23265u ~]# dd if=/dev/zero of=test bs=64k count=512 oflag=dsync
- 512+0 records in
- 512+0 records out
- 33554432 bytes (34 MB) copied, 1.69059 seconds, 19.8 MB/s
复制代码 |
|