how to install IOR IO Benchmark

本文档记录了在Linux环境中安装IOR I/O性能基准测试工具的详细过程。首先通过git克隆IOR的源代码,然后尝试使用autoreconf命令,发现缺少依赖并安装了autoconf和automake。然而,在后续步骤中遇到aclocal找不到的问题,最终成功安装并运行了IOR。
摘要由CSDN通过智能技术生成

[15:17:17 root@host4 cy]# git clone https://github.com/hpc/ior.git
Cloning into 'ior'...
remote: Enumerating objects: 75, done.
remote: Counting objects: 100% (75/75), done.
remote: Compressing objects: 100% (49/49), done.
remote: Total 3517 (delta 39), reused 44 (delta 26), pack-reused 3442
Receiving objects: 100% (3517/3517), 2.02 MiB | 15.00 KiB/s, done.
Resolving deltas: 100% (2505/2505), done.
[15:19:39 root@host4 cy]# ls
fio_param  ior  map.sh  pdsh.sh  quota.sh  script  ssh_key.sh
[15:20:49 root@host4 cy]# cd ior/
[15:20:51 root@host4 ior]# ls
AUTHORS    config        contrib    doc          META  README_DAOS  README_S3  testing          travis-test.sh
bootstrap  configure.ac  COPYRIGHT  Makefile.am  NEWS  README.md    src        travis-build.sh
[15:20:51 root@host4 ior]#
[15:22:06 root@host4 ior]# ls
AUTHORS    config        contrib    doc          META  README_DAOS  README_S3  testing          travis-test.sh
bootstrap  configure.ac  COPYRIGHT  Makefile.am  NEWS  README.md    src        travis-build.sh
[15:22:06 root@host4 ior]# ./bootstrap
./bootstrap: line 3: autoreconf: command not found
[15:22:08 root@host4 ior]# yum -y install autoreconf
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
No package autoreconf available.
Error: Nothing to do
[15:22:17 root@host4 ior]# yum -y install autoconf
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
Resolving Dependencies
There are unfinished transactions remaining. You might consider running yum-complete-transaction, or "yum-complete-transaction --cleanup-only" and "yum history redo last", first to finish them. If those don't work you'll have to try removing/installing packages by hand (maybe package-cleanup can help).
The program yum-complete-transaction is found in the yum-utils package.
--> Running transaction check
---> Package autoconf.noarch 0:2.69-11.el7 will be installed
--> Processing Dependency: m4 >= 1.4.14 for package: autoconf-2.69-11.el7.noarch
--> Running transaction check
---> Package m4.x86_64 0:1.4.16-10.el7 will be installed
--> Finished Dependency Resolution

Dependencies Resolved

====================================================================================================================================================
 Package                           Arch                            Version                                  Repository                         Size
====================================================================================================================================================
Installing:
 autoconf                          noarch                          2.69-11.el7                              yrcf-6.4                          701 k
Installing for dependencies:
 m4                                x86_64                          1.4.16-10.el7                            yrcf-6.4                          256 k

Transaction Summary
====================================================================================================================================================
Install  1 Package (+1 Dependent package)

Total download size: 957 k
Installed size: 2.7 M
Downloading packages:
(1/2): m4-1.4.16-10.el7.x86_64.rpm                                                                                           | 256 kB  00:00:00     
(2/2): autoconf-2.69-11.el7.noarch.rpm                                                                                       | 701 kB  00:00:00     
----------------------------------------------------------------------------------------------------------------------------------------------------
Total                                                                                                               6.7 MB/s | 957 kB  00:00:00     
Running transaction check
Running transaction test
Transaction test succeeded
Running transaction
  Installing : m4-1.4.16-10.el7.x86_64                                                                                                          1/2
  Installing : autoconf-2.69-11.el7.noarch                                                                                                      2/2
  Verifying  : m4-1.4.16-10.el7.x86_64                                                                                                          1/2
  Verifying  : autoconf-2.69-11.el7.noarch                                                                                                      2/2

Installed:
  autoconf.noarch 0:2.69-11.el7                                                                                                                     

Dependency Installed:
  m4.x86_64 0:1.4.16-10.el7                                                                                                                         

Complete!
[15:22:27 root@host4 ior]# ./bootstrap
autoreconf: Entering directory `.'
autoreconf: configure.ac: not using Gettext
autoreconf: running: aclocal -I config --output=aclocal.m4t
Can't exec "aclocal": No such file or directory at /usr/share/autoconf/Autom4te/FileUtils.pm line 326.
autoreconf: failed to run aclocal: No such file or directory
[15:22:58 root@host4 ior]# yum -y install aclocal
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
No package aclocal available.
Error: Nothing to do
[15:23:06 root@host4 ior]# yum -y install aclocal
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
No package aclocal available.
Error: Nothing to do
[15:23:16 root@host4 ior]# yum search aclocal
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
Warning: No matches found for: aclocal
No matches found
[15:23:33 root@host4 ior]# ls
AUTHORS    config        contrib    doc          META  README_DAOS  README_S3  testing          travis-test.sh
bootstrap  configure.ac  COPYRIGHT  Makefile.am  NEWS  README.md    src        travis-build.sh
[15:23:35 root@host4 ior]# yum search aclocal
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
 * epel: mirrors.yun-idc.com
Warning: No matches found for: aclocal
No matches found
[15:23:55 root@host4 ior]# yum search aclocal
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
 * base: mirror.bit.edu.cn
 * epel: mirrors.yun-idc.com
 * extras: mirror.bit.edu.cn
 * updates: mirrors.bfsu.edu.cn
Warning: No matches found for: aclocal
No matches found
[15:24:44 root@host4 ior]# yum search aclocal
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
 * base: mirror.bit.edu.cn
 * epel: mirrors.yun-idc.com
 * extras: mirror.bit.edu.cn
 * updates: mirrors.bfsu.edu.cn
Warning: No matches found for: aclocal
No matches found
[15:24:58 root@host4 ior]# yum -y install automake
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
 * base: mirrors.huaweicloud.com
 * epel: mirrors.yun-idc.com
 * extras: mirrors.huaweicloud.com
 * updates: mirrors.bfsu.edu.cn
Resolving Dependencies
--> Running transaction check
---> Package automake.noarch 0:1.13.4-3.el7 will be installe

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值