↧
Answer by Doug Smythies for Get current disk I/O usage from command
This seems to work for me (in the below examples, the first one was taken with nothing else going on, and the second was taken reading a big huge file): doug@s15:~/iso$ iostat -dxy 2 1 /dev/sda | grep...
View ArticleGet current disk I/O usage from command
I'm trying to obtain the current disk I/O usage (in %) from a single command. Currently I have iostat -dx /dev/sda 1 | awk {'print $16'} which gives me the utilization entry for I/O from iostat. It...
View Article