1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 11:44:54 +02:00
tldr/pages/common/ioping.md
2019-06-05 23:42:48 -03:00

20 lines
413 B
Markdown

# ioping
> Monitor I/O latency in real time.
> More information: <https://github.com/koct9i/ioping>.
- Show disk I/O latency using the default values and the current directory:
`ioping .`
- Measure latency on /tmp using 10 requests of 1 megabyte each:
`ioping -c 10 -s 1M /tmp`
- Measure disk seek rate on /dev/sda:
`ioping -R /dev/sda`
- Measure disk sequential speed on /dev/sda:
`ioping -RL /dev/sda`