# fio を Homebrew, apk, chocolatey, apt, dnf, Nix, pacman, zypper, scoop, winget でインストール

fio のインストール経路、実行ファイル、メタデータ、AI エージェント向けセキュリティノートを確認します。

## インストール

```sh
sudo av install brew:fio
```

追加のインストールコマンド:

### macOS

- Homebrew (100%):

```sh
brew install fio
```

  証拠: local Homebrew formula metadata

### Linux

- apk (92%):

```sh
sudo apk add fio
```

  証拠: Alpine Linux edge package indexes: fio from https://dl-cdn.alpinelinux.org/alpine/edge/community/x86_64/APKINDEX.tar.gz

- Debian apt (92%):

```sh
sudo apt install fio
```

  証拠: Debian stable package indexes: fio from https://deb.debian.org/debian/dists/stable/main/binary-amd64/Packages.xz

- dnf (92%):

```sh
sudo dnf install fio
```

  証拠: Fedora Rawhide package metadata: fio from https://dl.fedoraproject.org/pub/fedora/linux/development/rawhide/Everything/x86_64/os/repodata/07190dc5ae9f35ae73866675fed6d95fe6e8d9fe22c9d7cdf85862cb2ed24a4c-primary.xml.zst

- Nix (92%):

```sh
nix profile install nixpkgs#fio
```

  証拠: nixpkgs package indexes: pkgs/by-name/fi/fio/package.nix from https://api.github.com/repos/NixOS/nixpkgs/git/trees/master?recursive=1

- pacman (92%):

```sh
sudo pacman -S fio
```

  証拠: Arch Linux sync databases: fio from https://geo.mirror.pkgbuild.com/extra/os/x86_64/extra.db.tar.gz

- zypper (92%):

```sh
sudo zypper install fio
```

  証拠: openSUSE Tumbleweed package metadata: fio from https://download.opensuse.org/tumbleweed/repo/oss/repodata/50b07339cb64c8ed4091bdbabddadc1ff5737b090e478818a195b40d8a3292861a879139b4a3987c31109699fde9fbf4a716367ddf4eef77da75f96e3193d6ed-primary.xml.zst

### Windows

- Chocolatey (92%):

```sh
choco install fio
```

  証拠: Chocolatey community package catalog: fio from http://community.chocolatey.org/api/v2/Packages?$filter=IsLatestVersion&$select=Id&$top=1000&$skiptoken='11','everythingpowertoys'

- Scoop (92%):

```sh
scoop install main/fio
```

  証拠: Scoop official bucket manifest trees: bucket/fio.json from https://api.github.com/repos/ScoopInstaller/Main/git/trees/master?recursive=1

- winget (92%):

```sh
winget install --id fio.fio -e
```

  証拠: Windows Package Manager source index: fio.fio from https://cdn.winget.microsoft.com/cache/source.msix

## パッケージ情報

- **パッケージキー:** brew:fio
- **パッケージマネージャ:** Homebrew
- **バージョン:** 3.42
- **ソース概要:** I/O benchmark and stress test
- **ホームページ:** <https://github.com/axboe/fio>
- **リポジトリ:** <https://github.com/axboe/fio>
- **生成日時:** 2026-08-03T19:37:03+00:00

## 実行可能ファイル

- fio (エイリアス)
- fio-btrace2fio (エイリアス)
- fio-dedupe (エイリアス)
- fio-genzipf (エイリアス)
- fio-histo-log-pctiles.py (エイリアス)
- fio-verify-state (エイリアス)
- fio2gnuplot (エイリアス)
- fio_generate_plots (エイリアス)
- fio_jsonplus_clat2csv (エイリアス)
- fiologparser.py (エイリアス)
- fiologparser_hist.py (エイリアス)
- genfio (エイリアス)

## インストール挙動

- Bottle: 利用不可

## バージョンと鮮度

- ページ生成日: 2026-08-03
- マネージャ版: 3.42
## プロジェクトの歴史と使われ方

fio, the Flexible I/O Tester, is a storage workload generator, benchmark, and stress-test tool. It lets users describe I/O workloads in job files or command-line options, then runs threads or processes that perform the requested reads, writes, syncs, async I/O, memory-mapped I/O, and other workload patterns.

### プロジェクトの歴史

The fio manual includes its own origin story: Jens Axboe wrote fio because he was tired of writing special-purpose test programs every time he needed to test a particular workload for performance analysis or bug reproduction. The manual dates that authorship note to September 5, 2006.

That motivation shaped fio's design. Instead of being a single benchmark with one workload model, fio became a flexible engine for simulating many combinations of threads, processes, I/O engines, block sizes, queue depths, files, devices, and verification settings.

The canonical source is documented as Jens Axboe's kernel.org Git repository, with GitHub listed as an official mirror. That kernel-adjacent hosting history fits fio's role: it is a tool used by storage developers, kernel engineers, filesystem maintainers, database operators, and performance testers who need reproducible I/O workloads.

### 採用の歴史

fio's own documentation records distribution adoption across Debian starting with Squeeze, Ubuntu starting with 10.04 LTS, Fedora starting with Fedora 9 and EPEL 4, plus Mandriva, Arch Linux, Solaris via OpenCSW, BSD package repositories, and Windows installers beginning with fio 3.31.

That adoption pattern is unusually broad for a benchmark: fio is not just a lab tool, but a package-manager-standard executable that support teams and performance engineers expect to find on servers, workstations, CI images, and storage appliances.

### 使われ方

The normal fio workflow is to write a job file that matches the I/O load to simulate, then run fio with that job file. Users can also pass options directly on the command line, and multiple job files can be serialized from one invocation.

fio is used to measure throughput, latency, IOPS, queue-depth behavior, async I/O, filesystem behavior, device saturation, and failure or verification cases. Because it can reproduce tailored workloads without writing new C test programs, it is a common bridge between bug reports and repeatable performance experiments.

### パッケージ好きにとっての重要性

fio is package-nerd significant because it is the de facto portable storage torture tool. When a package, filesystem, block device, cloud volume, or database stack claims performance behavior, fio is often the small executable used to make that claim reproducible.

It is also a reminder that good benchmarking tools are languages. fio job files encode workload intent, and packagers care because shipping fio gives users a shared grammar for comparing machines, kernels, filesystems, and storage backends.

### タイムライン

- 2006: Jens Axboe authors fio to avoid repeatedly writing one-off I/O workload test programs.
- 2008: fio documentation records Fedora 9 and EPEL 4 as starting points for Fedora/EPEL packages.
- 2010: fio documentation records Ubuntu 10.04 LTS as the starting point for Ubuntu packages.
- 2011: fio documentation records Debian Squeeze as the starting point for Debian packages.
- 2022: fio 3.31 begins providing Windows installers for tagged releases.
- 2026: fio documentation identifies 3.41-era development and continued maintenance.

### Related projects

- Linux kernel block-layer and I/O scheduler development are closely related to fio's origin and ongoing use.
- iozone, bonnie++, dd, stress-ng, and filesystem-specific benchmarks are neighboring tools, but fio is usually chosen when workload shape matters.
- Kernel.org infrastructure and the fio mailing list provide the project's canonical development context.

### ソース

- <https://fio.readthedocs.io/en/master/fio_doc.html>
- <https://raw.githubusercontent.com/axboe/fio/master/README.rst>
- <https://git.kernel.org/pub/scm/linux/kernel/git/axboe/fio>
- <https://github.com/axboe/fio>


## セキュリティノート

narrow executable package without higher-risk signals.

- **Geiger リスク:** グリーン / 低
- narrow executable package without higher-risk signals

## 他のパッケージマネージャ記録

- Debian apt - fio - 3.39-1: normalized package name match | Debian stable package indexes: fio from https://deb.debian.org/debian/dists/stable/main/binary-amd64/Packages.xz | flexible I/O tester | https://github.com/axboe/fio
- Debian apt - fio-examples - 3.39-1: normalized package name match | Debian stable package indexes: fio-examples from https://deb.debian.org/debian/dists/stable/main/binary-amd64/Packages.xz | flexible I/O tester - example job files | https://github.com/axboe/fio
- Nix - fio: normalized package name match | nixpkgs package indexes: pkgs/by-name/fi/fio/package.nix from https://api.github.com/repos/NixOS/nixpkgs/git/trees/master?recursive=1
- Ubuntu apt - fio - 3.36-1build2: normalized package name match | Ubuntu 24.04 LTS package indexes: fio from https://archive.ubuntu.com/ubuntu/dists/noble/universe/binary-amd64/Packages.gz | flexible I/O tester | https://github.com/axboe/fio
- Ubuntu apt - fio-examples - 3.36-1build2: normalized package name match | Ubuntu 24.04 LTS package indexes: fio-examples from https://archive.ubuntu.com/ubuntu/dists/noble/universe/binary-amd64/Packages.gz | flexible I/O tester - example job files | https://github.com/axboe/fio
- apk - fio - 3.42-r0: normalized package name match | Alpine Linux edge package indexes: fio from https://dl-cdn.alpinelinux.org/alpine/edge/community/x86_64/APKINDEX.tar.gz | Flexible I/O Tester | https://github.com/axboe/fio
- apk - fio-doc - 3.42-r0: normalized package name match | Alpine Linux edge package indexes: fio-doc from https://dl-cdn.alpinelinux.org/alpine/edge/community/x86_64/APKINDEX.tar.gz | Flexible I/O Tester (documentation) | https://github.com/axboe/fio
- dnf - fio - 3.42-3.fc45: normalized package name match | Fedora Rawhide package metadata: fio from https://dl.fedoraproject.org/pub/fedora/linux/development/rawhide/Everything/x86_64/os/repodata/07190dc5ae9f35ae73866675fed6d95fe6e8d9fe22c9d7cdf85862cb2ed24a4c-primary.xml.zst | Multithreaded IO generation tool | https://git.kernel.org/pub/scm/linux/kernel/git/axboe/fio
- dnf - fio-engine-dev-dax - 3.42-3.fc45: normalized package name match | Fedora Rawhide package metadata: fio-engine-dev-dax from https://dl.fedoraproject.org/pub/fedora/linux/development/rawhide/Everything/x86_64/os/repodata/07190dc5ae9f35ae73866675fed6d95fe6e8d9fe22c9d7cdf85862cb2ed24a4c-primary.xml.zst | PMDK dev-dax engine for fio. | https://git.kernel.org/pub/scm/linux/kernel/git/axboe/fio
- dnf - fio-engine-http - 3.42-3.fc45: normalized package name match | Fedora Rawhide package metadata: fio-engine-http from https://dl.fedoraproject.org/pub/fedora/linux/development/rawhide/Everything/x86_64/os/repodata/07190dc5ae9f35ae73866675fed6d95fe6e8d9fe22c9d7cdf85862cb2ed24a4c-primary.xml.zst | HTTP engine for fio. | https://git.kernel.org/pub/scm/linux/kernel/git/axboe/fio
- dnf - fio-engine-libaio - 3.42-3.fc45: normalized package name match | Fedora Rawhide package metadata: fio-engine-libaio from https://dl.fedoraproject.org/pub/fedora/linux/development/rawhide/Everything/x86_64/os/repodata/07190dc5ae9f35ae73866675fed6d95fe6e8d9fe22c9d7cdf85862cb2ed24a4c-primary.xml.zst | Linux libaio engine for fio. | https://git.kernel.org/pub/scm/linux/kernel/git/axboe/fio
- dnf - fio-engine-libpmem - 3.42-3.fc45: normalized package name match | Fedora Rawhide package metadata: fio-engine-libpmem from https://dl.fedoraproject.org/pub/fedora/linux/development/rawhide/Everything/x86_64/os/repodata/07190dc5ae9f35ae73866675fed6d95fe6e8d9fe22c9d7cdf85862cb2ed24a4c-primary.xml.zst | PMDK pmemblk engine for fio. | https://git.kernel.org/pub/scm/linux/kernel/git/axboe/fio
- dnf - fio-engine-nbd - 3.42-3.fc45: normalized package name match | Fedora Rawhide package metadata: fio-engine-nbd from https://dl.fedoraproject.org/pub/fedora/linux/development/rawhide/Everything/x86_64/os/repodata/07190dc5ae9f35ae73866675fed6d95fe6e8d9fe22c9d7cdf85862cb2ed24a4c-primary.xml.zst | Network Block Device engine for fio. | https://git.kernel.org/pub/scm/linux/kernel/git/axboe/fio
- dnf - fio-engine-rados - 3.42-3.fc45: normalized package name match | Fedora Rawhide package metadata: fio-engine-rados from https://dl.fedoraproject.org/pub/fedora/linux/development/rawhide/Everything/x86_64/os/repodata/07190dc5ae9f35ae73866675fed6d95fe6e8d9fe22c9d7cdf85862cb2ed24a4c-primary.xml.zst | Rados engine for fio. | https://git.kernel.org/pub/scm/linux/kernel/git/axboe/fio
- dnf - fio-engine-rbd - 3.42-3.fc45: normalized package name match | Fedora Rawhide package metadata: fio-engine-rbd from https://dl.fedoraproject.org/pub/fedora/linux/development/rawhide/Everything/x86_64/os/repodata/07190dc5ae9f35ae73866675fed6d95fe6e8d9fe22c9d7cdf85862cb2ed24a4c-primary.xml.zst | Rados Block Device engine for fio. | https://git.kernel.org/pub/scm/linux/kernel/git/axboe/fio
- dnf - fio-engine-rdma - 3.42-3.fc45: normalized package name match | Fedora Rawhide package metadata: fio-engine-rdma from https://dl.fedoraproject.org/pub/fedora/linux/development/rawhide/Everything/x86_64/os/repodata/07190dc5ae9f35ae73866675fed6d95fe6e8d9fe22c9d7cdf85862cb2ed24a4c-primary.xml.zst | RDMA engine for fio. | https://git.kernel.org/pub/scm/linux/kernel/git/axboe/fio


## Combined YAML source

View the package source record on GitHub. [combined/fio.yml](https://github.com/mxcl/pkgdb/blob/main/combined/fio.yml)


## ソース

- pkg.so package database
- Geiger risk classifier
- curated package history
- pkgdb category and tag curation
- external package-manager database matches
- cross-ecosystem install command graph
