linux下效能測試

2021-10-06 23:42:53 字數 543 閱讀 9380

1.硬碟io讀寫速度

dd if=/dev/zero of=test bs=64k count=4k oflag=dsync

dd if=/dev/zero of=test bs=8k count=256k conv=fdatasync

#conv=fdatasync與oflag=dsync的區別在於:sync函式只是將所有修改過的塊緩衝區排入寫佇列,然後就返回,它並不等待實際寫磁碟操作結束。

#而fsync函式只對由檔案描述符filedes指定的單一檔案起作用,並且等待寫磁碟操作結束,然後返回。這是我電腦的硬碟io測試結果。

2.網路吞吐

wget 

python speedtest.py --share #自動找到最近的節點,測試網速,並共享

如果需要測試其他地方的網速,可以列出可用節點,再測試

python speedtest.py –list |grep china

python speedtest.py –server 5017 #伺服器節點編號

Linux下測試CPU效能

一 安裝stress服務 2 解壓tar xvf stress 1.0.1.orig.tar.gz 3 進入解壓目錄執行.configure 4 make 5 make check 6 make install 7 make clean 二 安裝sysstat服務 2 解壓tar xvf sysst...

LINUX下測試磁碟效能

硬體環境 ibm 3650 m3 7945o75機架式伺服器,主要硬體引數 intel xeon processor x5675 6c 3.06ghz 12mb cache 1333mhz x 2 4gb pc3l 10600 cl9 ecc ddr3 1333mhz lp rdimm x 4 30...

linux磁碟效能測試

120 test apt get install hdparm 真實機器120上測試結果 測試磁碟效能 不cache 120 test home lai hdparm t dev sda dev sda timing buffered disk reads 346 mb in 3.02 second...