1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2024-11-02 07:18:29 +01:00
tldr/pages/common/ioping.md

20 lines
357 B
Markdown
Raw Normal View History

2015-12-28 10:36:54 +01:00
# ioping
> Monitor I/O latency in real time.
2015-12-28 10:36:54 +01:00
- Show disk I/O latency using the default values and the current directory:
2015-12-28 10:36:54 +01:00
`ioping .`
- Measure latency on /tmp using 10 requests of 1 megabyte each:
2015-12-28 10:36:54 +01:00
`ioping -c 10 -s 1M /tmp`
- Measure disk seek rate on /dev/sda:
2015-12-28 10:36:54 +01:00
`ioping -R /dev/sda`
- Measure disk sequential speed on /dev/sda:
2015-12-28 10:36:54 +01:00
`ioping -RL /dev/sda`