从事IT基础架构多年,发现自己原来更合适去当老师……喜欢关注新鲜事物,不仅限于IT领域。
分类:
2006-09-27 13:53:48
现举例说明:
1. 使用iostat命令找出最繁忙的硬盘.
#iostat 1 10
iostat命令输出:
tty: ---tin ---tout avg-cpu: % user % sys % idle % iowait
---------0.1 ---4.6------------0.1 ---0.3 ---99.6---0.1
Disks:---% tm_act ------------Kbps ---tps ---Kb_read Kb_wrtn
hdisk0---89.0 --623.2 ---------0.0 ---125827 12264
hdisk1---0.1 ---0.8 -----------0.1---1443 ---323
cd0 -----0.0 ---0.0 -----------0.0 ---18 ---0
2. 找出硬盘对应的文件系统:
#lspv -l hdisk#
hdisk0:
LV NAME ------LPs ---PPs DISTRIBUTIONMOUNT POINT
hd2 ----------303 ---303 51..38..107..107..00 /usr
paging00 -----1 ------1 01..00..00..00..00 N/A
lv00----------69 -----69 00..69..00..00..00 /stash
3. 找出运行在文件系统或逻辑卷上的进程:
fuser -cux followed by
例如:
#fuser -cux /dev/hd6 or fuser -cux /var
/dev/hd2:1e(root) 1928e(root) 2626e(root) 3132e(root)3628e(root)
进程ID后的字符表示进程访问该文件的方式:
c - Uses the file as the current directory(当前目录).
e - Uses the file as a program's executable object(可是形成序).
r - Uses the file as the root directory(作为根目录).
s - Uses the file as a shared library (共享库).