fio源码编译后的fio运行报错 fio: file:ioengines.c:89, func=dlopen, error=libaio: cannot open shared object file

先安装libaio-devel,再重新编译fio

[root@localhost fio-3.19]# yum -y install libaio-devel

[root@localhost fio-3.19]# mkdir install

[root@localhost fio-3.19]# ./configure --prefix=./install

[root@localhost fio-3.19]# make clean;make;make install

你可能感兴趣的:(fio)