Linux I/O Monitoring and Analyze: Difference between revisions
From WikiMLT
Line 7: | Line 7: | ||
sudo apt show htop 2>/dev/null | grep '^Version' | sudo apt show htop 2>/dev/null | grep '^Version' | ||
</syntaxhighlight> | </syntaxhighlight> | ||
<syntaxhighlight lang="shell" line="1" | <syntaxhighlight lang="shell" line="1" style="border-top-width: 0;"> | ||
sudo apt install htop | sudo apt install htop | ||
</syntaxhighlight> | </syntaxhighlight> |
Revision as of 14:52, 28 August 2022
There is a couple of tools available that allows you to monitor and analyze the disk I/O performance of your Linux driven system. Here are listed few of them and also how to install and examples of their basic usage.
Htop 3.2+
If the latest version of htop
is available at your distribution, there is available an additional tab that shows the I/O
metrics of the instance. Here is how to check the available version and install htop
.
sudo apt show htop 2>/dev/null | grep '^Version'
sudo apt install htop
Section 1
…