LoginSignup
1
2

More than 1 year has passed since last update.

【2022年11月版】Linuxでストレージのベンチマーク計測(diskspd)

Last updated at Posted at 2022-11-18

はじめに

CrystalDiskMark みたいにストレージのベンチマークを計測したい
CrystalDiskMark の中で使われている diskspd を使おう

環境

Ubuntu 22.04.01

インストール

$ sudo apt install -y build-essential libaio1 libaio-dev
$ git clone https://github.com/microsoft/diskspd-for-linux.git
$ cd diskspd-for-linux/
$ make -j4
$ sudo cp ./bin/diskspd /usr/local/bin/

計測

  • SEQ1M Q8T1 READ
$ diskspd -c1G -Zr -b1M -d5 -o8 -t1 -W0 -Sd -w0 -L ./SEQ1M_Q8T1.dat
  • SEQ1M Q8T1 WRITE
$ diskspd -Zr -b1M -d5 -o8 -t1 -W0 -Sd -w100 -L ./SEQ1M_Q8T1.dat

さいごに

かんたんでしたね

参考情報

とてもありがたい

1
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
2