欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Centos 7.6 Install iozone

程序员文章站 2024-03-21 17:27:58
...

iozone介绍

iozone(www.iozone.org)是一个文件系统的benchmark工具,可以测试不同的操作系统中文件系统的读写性能。可以测试 Read, write, re-read,re-write, read backwards, read strided, fread, fwrite, random read, pread,mmap, aio_read, aio_write 等等不同的模式下的硬盘的性能。

文档参考

http://www.iozone.org/docs/IOzone_msword_98.pdf

依赖安装

shell:yum install gcc gcc-c++ wget 

下载iozone

shell wget http://www.iozone.org/src/current/iozone3_489.tar

解压iozone

shell: tar -xvf iozone3_489.tar

编译安装

shell: cd /root/iozone3_489/current

makefile中已经指明,安装到linux 64位的机器中的方法
shell: less makefile 
shell: make linux-AMD64

iozone常用参数

-a 全面测试,比如块大小它会自动加

-i N 用来选择测试项, 比如Read/Write/Random 比较常用的是0 1 2,可以指定成-i 0 -i 1 -i2.这些别的详细内容请查man

0=write/rewrite

  1=read/re-read

  2=random-read/write

  3=Read-backwards

  4=Re-write-record

  5=stride-read

  6=fwrite
相关标签: Centos iozone