Windows XP Windows 7 Windows 2003 Windows Vista Windows教程綜合 Linux 系統教程
Windows 10 Windows 8 Windows 2008 Windows NT Windows Server 電腦軟件教程
 Windows教程網 >> Linux系統教程 >> Linux教程 >> Linux下查看IO繁忙的進程ID

Linux下查看IO繁忙的進程ID

日期:2017/2/7 14:24:19      編輯:Linux教程
 

開啟IO監控:

sysctl vm.block_dump=1
#或
echo 1 >/proc/sys/vm/block_dump

開啟後內核會將IO讀寫dump到日記,用dmesg查看:

dmesg

進程讀寫block到磁盤dm-0:

mysqld(7822): READ block 78196624 on dm-0
kjournald(529): WRITE block 211136 on dm-0
bash(8336): dirtied inode 7391146 (dmesg) on dm-0

統計當前占用IO最高的10個進程:

dmesg |awk -F: ‘{print $1}’|sort|uniq -c|sort -rn|head -n 10

Copyright © Windows教程網 All Rights Reserved