fio

Flexible I/O Tester

https://github.com/axboe/fio

Science Score: 54.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
    Found CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
    Found .zenodo.json file
  • DOI references
  • Academic publication links
  • Committers with academic emails
    11 of 469 committers (2.3%) from academic institutions
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (13.2%) to scientific vocabulary

Keywords from Contributors

init services system systemd lstm ocr ocr-engine tesseract tesseract-ocr closember
Last synced: 6 months ago · JSON representation ·

Repository

Flexible I/O Tester

Basic Info
  • Host: GitHub
  • Owner: axboe
  • License: gpl-2.0
  • Language: C
  • Default Branch: master
  • Size: 29.4 MB
Statistics
  • Stars: 5,814
  • Watchers: 163
  • Forks: 1,330
  • Open Issues: 231
  • Releases: 10
Created over 13 years ago · Last pushed 6 months ago
Metadata Files
Readme License Citation Support

README.rst

Overview and history
--------------------

Fio was originally written to save me the hassle of writing special test case
programs when I wanted to test a specific workload, either for performance
reasons or to find/reproduce a bug. The process of writing such a test app can
be tiresome, especially if you have to do it often.  Hence I needed a tool that
would be able to simulate a given I/O workload without resorting to writing a
tailored test case again and again.

A test work load is difficult to define, though. There can be any number of
processes or threads involved, and they can each be using their own way of
generating I/O. You could have someone dirtying large amounts of memory in a
memory mapped file, or maybe several threads issuing reads using asynchronous
I/O. fio needed to be flexible enough to simulate both of these cases, and many
more.

Fio spawns a number of threads or processes doing a particular type of I/O
action as specified by the user. fio takes a number of global parameters, each
inherited by the thread unless otherwise parameters given to them overriding
that setting is given.  The typical use of fio is to write a job file matching
the I/O load one wants to simulate.


Source
------

Fio resides in a git repo, the canonical place is:

	https://git.kernel.dk/cgit/fio/

Snapshots are frequently generated and :file:`fio-git-*.tar.gz` include the git
meta data as well. Other tarballs are archives of official fio releases.
Snapshots can download from:

	https://brick.kernel.dk/snaps/

There are also two official mirrors. Both of these are automatically synced with
the main repository, when changes are pushed. If the main repo is down for some
reason, either one of these is safe to use as a backup:

	https://git.kernel.org/pub/scm/linux/kernel/git/axboe/fio.git

	https://github.com/axboe/fio.git


Mailing list
------------

The fio project mailing list is meant for anything related to fio including
general discussion, bug reporting, questions, and development. For bug reporting,
see REPORTING-BUGS.

An automated mail detailing recent commits is automatically sent to the list at
most daily. The list address is fio@vger.kernel.org, subscribe by sending an
email to fio+subscribe@vger.kernel.org or visit
https://subspace.kernel.org/vger.kernel.org.html.

Archives can be found here:

	https://www.spinics.net/lists/fio/

or here:

	https://lore.kernel.org/fio/

and archives for the old list can be found here:

	http://maillist.kernel.dk/fio-devel/


Author
------

Fio was written by Jens Axboe  to enable flexible testing of
the Linux I/O subsystem and schedulers. He got tired of writing specific test
applications to simulate a given workload, and found that the existing I/O
benchmark/test tools out there weren't flexible enough to do what he wanted.

Jens Axboe  20060905


Maintainers
-----------

Fio is maintained by Jens Axboe  - however, for reporting bugs please use
the fio reflector or the GitHub page rather than email any of them
directly. By using the public resources, others will be able to learn from
the responses too. Chances are also good that other members will be able to
help with your inquiry as well.


Binary packages
---------------

Debian:
	Starting with Debian "Squeeze", fio packages are part of the official
	Debian repository. https://packages.debian.org/search?keywords=fio .

Ubuntu:
	Starting with Ubuntu 10.04 LTS (aka "Lucid Lynx"), fio packages are part
	of the Ubuntu "universe" repository.
	https://packages.ubuntu.com/search?keywords=fio .

Red Hat, Fedora, CentOS & Co:
	Starting with Fedora 9/Extra Packages for Enterprise Linux 4, fio
	packages are part of the Fedora/EPEL repositories.
	https://packages.fedoraproject.org/pkgs/fio/ .

Mandriva:
	Mandriva has integrated fio into their package repository, so installing
	on that distro should be as easy as typing ``urpmi fio``.

Arch Linux:
        An Arch Linux package is provided under the Community sub-repository:
        https://www.archlinux.org/packages/?sort=&q=fio

Solaris:
	Packages for Solaris are available from OpenCSW. Install their pkgutil
	tool (http://www.opencsw.org/get-it/pkgutil/) and then install fio via
	``pkgutil -i fio``.

Windows:
        Beginning with fio 3.31 Windows installers for tagged releases are
        available on GitHub at https://github.com/axboe/fio/releases. The
        latest installers for Windows can also be obtained as GitHub Actions
        artifacts by selecting a build from
        https://github.com/axboe/fio/actions. These require logging in to a
        GitHub account.

BSDs:
	Packages for BSDs may be available from their binary package repositories.
	Look for a package "fio" using their binary package managers.


Building
--------

Just type::

 $ ./configure
 $ make
 $ make install

Note that GNU make is required. On BSDs it's available from devel/gmake within
ports directory; on Solaris it's in the SUNWgmake package.  On platforms where
GNU make isn't the default, type ``gmake`` instead of ``make``.

Configure will print the enabled options. Note that on Linux based platforms,
the libaio development packages must be installed to use the libaio
engine. Depending on the distro, it is usually called libaio-devel or libaio-dev.

For gfio, gtk 2.18 (or newer), associated glib threads, and cairo are required
to be installed.  gfio isn't built automatically and can be enabled with a
``--enable-gfio`` option to configure.

To build fio with a cross-compiler::

 $ make clean
 $ make CROSS_COMPILE=/path/to/toolchain/prefix

Configure will attempt to determine the target platform automatically.

It's possible to build fio for ESX as well, use the ``--esx`` switch to
configure.

The HTTP engine is enabled depending on if the curl and openssl shared libraries
are detected on the system. For Ubuntu, these packages are libcurl4-openssl-dev
and libssl-dev.


Windows
~~~~~~~

The minimum versions of Windows for building/running fio are Windows 7/Windows
Server 2008 R2. On Windows, Cygwin (https://www.cygwin.com/) is required in
order to build fio. To create an MSI installer package install WiX from
https://wixtoolset.org and run :file:`dobuild.cmd` from the :file:`os/windows`
directory.

How to compile fio on 64-bit Windows:

 1. Install Cygwin (https://www.cygwin.com/). Install **make** and all
    packages starting with **mingw64-x86_64**. Ensure
    **mingw64-x86_64-zlib** are installed if you wish
    to enable fio's log compression functionality.
 2. Open the Cygwin Terminal.
 3. Go to the fio directory (source files).
 4. Run ``make clean && make -j``.

To build fio for 32-bit Windows, ensure the -i686 versions of the previously
mentioned -x86_64 packages are installed and run ``./configure
--build-32bit-win`` before ``make``.

It's recommended that once built or installed, fio be run in a Command Prompt or
other 'native' console such as console2, since there are known to be display and
signal issues when running it under a Cygwin shell (see
https://github.com/mintty/mintty/issues/56 and
https://github.com/mintty/mintty/wiki/Tips#inputoutput-interaction-with-alien-programs
for details).


Documentation
~~~~~~~~~~~~~

Fio uses Sphinx_ to generate documentation from the reStructuredText_ files.
To build HTML formatted documentation run ``make -C doc html`` and direct your
browser to :file:`./doc/output/html/index.html`.  To build manual page run
``make -C doc man`` and then ``man doc/output/man/fio.1``.  To see what other
output formats are supported run ``make -C doc help``.

.. _reStructuredText: https://www.sphinx-doc.org/rest.html
.. _Sphinx: https://www.sphinx-doc.org


Platforms
---------

Fio works on (at least) Linux, Solaris, AIX, HP-UX, OSX, NetBSD, OpenBSD,
Windows, FreeBSD, and DragonFly. Some features and/or options may only be
available on some of the platforms, typically because those features only apply
to that platform (like the solarisaio engine, or the splice engine on Linux).

Some features are not available on FreeBSD/Solaris even if they could be
implemented, I'd be happy to take patches for that. An example of that is disk
utility statistics and (I think) huge page support, support for that does exist
in FreeBSD/Solaris.

Fio uses pthread mutexes for signaling and locking and some platforms do not
support process shared pthread mutexes. As a result, on such platforms only
threads are supported. This could be fixed with sysv ipc locking or other
locking alternatives.

Other \*BSD platforms are untested, but fio should work there almost out of the
box. Since I don't do test runs or even compiles on those platforms, your
mileage may vary. Sending me patches for other platforms is greatly
appreciated. There's a lot of value in having the same test/benchmark tool
available on all platforms.

Note that POSIX aio is not enabled by default on AIX. Messages like these::

    Symbol resolution failed for /usr/lib/libc.a(posix_aio.o) because:
        Symbol _posix_kaio_rdwr (number 2) is not exported from dependent module /unix.

indicate one needs to enable POSIX aio. Run the following commands as root::

    # lsdev -C -l posix_aio0
        posix_aio0 Defined  Posix Asynchronous I/O
    # cfgmgr -l posix_aio0
    # lsdev -C -l posix_aio0
        posix_aio0 Available  Posix Asynchronous I/O

POSIX aio should work now. To make the change permanent::

    # chdev -l posix_aio0 -P -a autoconfig='available'
        posix_aio0 changed


Running fio
-----------

Running fio is normally the easiest part - you just give it the job file
(or job files) as parameters::

	$ fio [options] [jobfile] ...

and it will start doing what the *jobfile* tells it to do. You can give more
than one job file on the command line, fio will serialize the running of those
files. Internally that is the same as using the :option:`stonewall` parameter
described in the parameter section.

If the job file contains only one job, you may as well just give the parameters
on the command line. The command line parameters are identical to the job
parameters, with a few extra that control global parameters.  For example, for
the job file parameter :option:`iodepth=2 `, the mirror command line
option would be :option:`--iodepth 2 ` or :option:`--iodepth=2
`. You can also use the command line for giving more than one job
entry. For each :option:`--name ` option that fio sees, it will start a
new job with that name.  Command line entries following a
:option:`--name ` entry will apply to that job, until there are no more
entries or a new :option:`--name ` entry is seen. This is similar to the
job file options, where each option applies to the current job until a new []
job entry is seen.

fio does not need to run as root, except if the files or devices specified in
the job section requires that. Some other options may also be restricted, such
as memory locking, I/O scheduler switching, and decreasing the nice value.

If *jobfile* is specified as ``-``, the job file will be read from standard
input.

Owner

  • Name: Jens Axboe
  • Login: axboe
  • Kind: user
  • Company: Facebook

Citation (CITATION.cff)

cff-version: 1.2.0
preferred-citation:
  type: software
  authors:
  - family-names: "Axboe"
    given-names: "Jens"
    email: axboe@kernel.dk
  title: "Flexible I/O Tester"
  year: 2022
  url: "https://github.com/axboe/fio"
licence: GNU GPL v2.0

GitHub Events

Total
  • Create event: 2
  • Commit comment event: 2
  • Release event: 1
  • Issues event: 106
  • Watch event: 484
  • Issue comment event: 313
  • Push event: 57
  • Pull request review comment event: 67
  • Pull request review event: 77
  • Pull request event: 47
  • Fork event: 67
Last Year
  • Create event: 2
  • Commit comment event: 2
  • Release event: 1
  • Issues event: 106
  • Watch event: 484
  • Issue comment event: 313
  • Push event: 57
  • Pull request review comment event: 67
  • Pull request review event: 77
  • Pull request event: 47
  • Fork event: 67

Committers

Last synced: 9 months ago

All Time
  • Total Commits: 7,868
  • Total Committers: 469
  • Avg Commits per committer: 16.776
  • Development Distribution Score (DDS): 0.623
Past Year
  • Commits: 192
  • Committers: 25
  • Avg Commits per committer: 7.68
  • Development Distribution Score (DDS): 0.62
Top Committers
Name Email Commits
Jens Axboe a****e@k****k 2,963
Jens Axboe j****e@o****m 1,364
Vincent Fu v****u@s****m 500
Tomohiro Kusumi t****i@t****m 292
Jens Axboe j****e@f****m 254
Sitsofe Wheeler s****e@y****m 208
Shin'ichiro Kawasaki s****i@w****m 163
Bart Van Assche b****e@a****g 154
Jens Axboe a****e@s****e 109
Bruce Cran b****e@c****k 88
Ankit Kumar a****r@s****m 83
Stephen M. Cameron s****n@g****m 65
Niklas Cassel n****l@w****m 64
Damien Le Moal d****l@w****m 61
Erwan Velu e****n@e****m 57
Bart Van Assche b****e@w****m 55
Dmitry Fomichev d****v@w****m 48
Erwan Velu e****1@g****m 41
Denis Pronin d****k@y****u 24
Robert Elliott e****t@h****m 21
Ben England b****d@r****m 20
Alexey Dobriyan a****n@g****m 19
Minwoo Im m****v@g****m 17
Shawn Lewis s****s@g****m 16
Aaron Carroll a****c@c****u 15
Adam Kupczyk a****k@r****m 15
Bruce Cran B****n@f****m 14
Damien Le Moal d****l@o****m 14
Radha Ramachandran r****a@g****m 14
Steven Lang t****a@g****m 13
and 439 more...

Issues and Pull Requests

Last synced: 6 months ago

All Time
  • Total issues: 276
  • Total pull requests: 224
  • Average time to close issues: 6 months
  • Average time to close pull requests: 19 days
  • Total issue authors: 216
  • Total pull request authors: 86
  • Average comments per issue: 2.79
  • Average comments per pull request: 2.11
  • Merged pull requests: 116
  • Bot issues: 0
  • Bot pull requests: 0
Past Year
  • Issues: 80
  • Pull requests: 45
  • Average time to close issues: 20 days
  • Average time to close pull requests: about 24 hours
  • Issue authors: 68
  • Pull request authors: 23
  • Average comments per issue: 1.63
  • Average comments per pull request: 1.0
  • Merged pull requests: 22
  • Bot issues: 0
  • Bot pull requests: 0
Top Authors
Issue Authors
  • wangyihanlarry (10)
  • vincentkfu (9)
  • horshack-dpreview (8)
  • raj-prince (7)
  • aggieNick02 (5)
  • mrkbutty (3)
  • ll123456 (3)
  • vt-alt (3)
  • it800 (3)
  • ningqingqing (3)
  • pppcn (2)
  • yahahawork (2)
  • anarazel (2)
  • yizhanglinux (2)
  • Stan-He (2)
Pull Request Authors
  • horshack-dpreview (16)
  • minwooim (10)
  • ankit-sam (10)
  • HuangShumin (10)
  • friendy-su (10)
  • bvanassche (9)
  • dpronin (9)
  • huangweiliang (8)
  • kawasaki (6)
  • parkvibes (6)
  • vincentkfu (6)
  • aggieNick02 (5)
  • RomanSofyin (4)
  • celestinechen (4)
  • panxiao2014 (4)
Top Labels
Issue Labels
enhancement (43) needreporterinfo (17) patcheswelcome (15) triaged (11) bug (9) windows (4) s390x (2) duplicate (1) needsattention (1)
Pull Request Labels
needsattention (1)

Packages

  • Total packages: 30
  • Total downloads:
    • homebrew 342 last-month
  • Total dependent packages: 4
    (may contain duplicates)
  • Total dependent repositories: 2
    (may contain duplicates)
  • Total versions: 62
  • Total maintainers: 1
alpine-v3.18: fio-doc

Flexible I/O Tester (documentation)

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Dependent packages count: 0.0%
Average: 1.3%
Forks count: 1.6%
Stargazers count: 3.5%
Maintainers (1)
Last synced: 6 months ago
alpine-v3.18: fio

Flexible I/O Tester

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Dependent packages count: 0.0%
Average: 1.3%
Forks count: 1.6%
Stargazers count: 3.5%
Maintainers (1)
Last synced: 6 months ago
alpine-edge: fio

Flexible I/O Tester

  • Versions: 8
  • Dependent Packages: 1
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Forks count: 1.6%
Stargazers count: 3.5%
Average: 4.9%
Dependent packages count: 14.6%
Maintainers (1)
Last synced: 6 months ago
alpine-edge: fio-doc

Flexible I/O Tester (documentation)

  • Versions: 8
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Forks count: 1.6%
Stargazers count: 3.5%
Average: 4.9%
Dependent packages count: 14.6%
Maintainers (1)
Last synced: 6 months ago
alpine-v3.13: fio

Flexible I/O Tester

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Forks count: 1.5%
Stargazers count: 2.4%
Average: 5.9%
Dependent packages count: 19.5%
Maintainers (1)
Last synced: 6 months ago
alpine-v3.13: fio-doc

Flexible I/O Tester (documentation)

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Forks count: 1.5%
Stargazers count: 2.4%
Average: 5.9%
Dependent packages count: 19.5%
Maintainers (1)
Last synced: 6 months ago
alpine-v3.12: fio-doc

Flexible I/O Tester (documentation)

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Forks count: 1.5%
Stargazers count: 2.2%
Average: 6.3%
Dependent packages count: 21.5%
Maintainers (1)
Last synced: 6 months ago
alpine-v3.12: fio

Flexible I/O Tester

  • Versions: 1
  • Dependent Packages: 1
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Forks count: 1.5%
Stargazers count: 2.2%
Average: 6.3%
Dependent packages count: 21.5%
Maintainers (1)
Last synced: 6 months ago
alpine-v3.14: fio

Flexible I/O Tester

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Forks count: 1.4%
Stargazers count: 2.5%
Average: 6.4%
Dependent packages count: 21.7%
Maintainers (1)
Last synced: 6 months ago
alpine-v3.14: fio-doc

Flexible I/O Tester (documentation)

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Forks count: 1.4%
Stargazers count: 2.5%
Average: 6.4%
Dependent packages count: 21.7%
Maintainers (1)
Last synced: 6 months ago
alpine-v3.11: fio-doc

Flexible I/O Tester (documentation)

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Forks count: 1.6%
Stargazers count: 2.2%
Average: 6.6%
Dependent packages count: 22.6%
Maintainers (1)
Last synced: 6 months ago
alpine-v3.11: fio

Flexible I/O Tester

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Forks count: 1.6%
Stargazers count: 2.2%
Average: 6.6%
Dependent packages count: 22.6%
Maintainers (1)
Last synced: 6 months ago
alpine-v3.15: fio

Flexible I/O Tester

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Forks count: 1.4%
Stargazers count: 2.7%
Average: 7.4%
Dependent packages count: 25.6%
Maintainers (1)
Last synced: 6 months ago
alpine-v3.15: fio-doc

Flexible I/O Tester (documentation)

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Forks count: 1.4%
Stargazers count: 2.7%
Average: 7.4%
Dependent packages count: 25.6%
Maintainers (1)
Last synced: 6 months ago
alpine-v3.16: fio-doc

Flexible I/O Tester (documentation)

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Forks count: 1.4%
Stargazers count: 2.7%
Average: 7.9%
Dependent packages count: 27.3%
Maintainers (1)
Last synced: 6 months ago
alpine-v3.16: fio

Flexible I/O Tester

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Forks count: 1.4%
Stargazers count: 2.7%
Average: 7.9%
Dependent packages count: 27.3%
Maintainers (1)
Last synced: 6 months ago
alpine-v3.17: fio

Flexible I/O Tester

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Forks count: 1.6%
Stargazers count: 3.2%
Average: 8.0%
Dependent packages count: 27.3%
Maintainers (1)
Last synced: 6 months ago
alpine-v3.17: fio-doc

Flexible I/O Tester (documentation)

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Forks count: 1.6%
Stargazers count: 3.2%
Average: 8.0%
Dependent packages count: 27.3%
Maintainers (1)
Last synced: 6 months ago
alpine-v3.10: fio

Flexible I/O Tester

  • Versions: 1
  • Dependent Packages: 2
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Forks count: 1.6%
Stargazers count: 2.1%
Average: 8.3%
Dependent packages count: 29.6%
Maintainers (1)
Last synced: 6 months ago
alpine-v3.10: fio-doc

Flexible I/O Tester (documentation)

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Forks count: 1.6%
Stargazers count: 2.1%
Average: 8.3%
Dependent packages count: 29.6%
Maintainers (1)
Last synced: 6 months ago
formulae.brew.sh: fio

I/O benchmark and stress test

  • Versions: 11
  • Dependent Packages: 0
  • Dependent Repositories: 2
  • Downloads: 342 Last month
Rankings
Forks count: 2.1%
Stargazers count: 6.2%
Average: 13.9%
Downloads: 17.2%
Dependent packages count: 19.4%
Dependent repos count: 24.5%
Last synced: 6 months ago
spack.io: fio

Flexible I/O Tester. Fio spawns a number of threads or processes doing a particular type of I/O action as specified by the user. fio takes a number of global parameters, each inherited by the thread unless otherwise parameters given to them overriding that setting is given.

  • Versions: 9
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Stargazers count: 2.4%
Forks count: 2.6%
Average: 15.6%
Dependent packages count: 57.3%
Last synced: 6 months ago
alpine-v3.21: fio-doc

Flexible I/O Tester (documentation)

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Dependent packages count: 0.0%
Average: 100%
Maintainers (1)
Last synced: 6 months ago
alpine-v3.22: fio-doc

Flexible I/O Tester (documentation)

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Dependent packages count: 0.0%
Average: 100%
Maintainers (1)
Last synced: 6 months ago
alpine-v3.20: fio-doc

Flexible I/O Tester (documentation)

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Dependent packages count: 0.0%
Average: 100%
Maintainers (1)
Last synced: 6 months ago
alpine-v3.22: fio

Flexible I/O Tester

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Dependent packages count: 0.0%
Average: 100%
Maintainers (1)
Last synced: 6 months ago
alpine-v3.19: fio-doc

Flexible I/O Tester (documentation)

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Dependent packages count: 0.0%
Average: 100%
Maintainers (1)
Last synced: 6 months ago
alpine-v3.19: fio

Flexible I/O Tester

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Dependent packages count: 0.0%
Average: 100%
Maintainers (1)
Last synced: 6 months ago
alpine-v3.21: fio

Flexible I/O Tester

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Dependent packages count: 0.0%
Average: 100%
Maintainers (1)
Last synced: 6 months ago
alpine-v3.20: fio

Flexible I/O Tester

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Dependent packages count: 0.0%
Average: 100%
Maintainers (1)
Last synced: 6 months ago

Dependencies

.github/workflows/ci.yml actions
  • actions/checkout v3 composite
.github/workflows/cifuzz.yml actions
  • actions/upload-artifact v1 composite
  • google/oss-fuzz/infra/cifuzz/actions/build_fuzzers master composite
  • google/oss-fuzz/infra/cifuzz/actions/run_fuzzers master composite