红联Linux门户
Linux帮助

lsof查看文件描述符的offset

发布时间:2016-06-11 15:28:26来源:linux网站作者:带鱼兄

1.基本概念
lsof -s :显示进程打开的文件的当前大小
lsof -o :显示进程打开的文件的offset

注意:The -o and -s options are mutually exclusive; they can't both be specified,也就是 -s、-o不能同时使用


2.查看进程打开的文件大小
lsof -p $pid -s | grep "access.log"

lsof查看文件描述符的offset


3.查看进程打开的文件offset
lsof -p $pid -o | grep "access.log"

lsof查看文件描述符的offset

第二个图的数字比较大,是因为文件一直在被写入
0x:16进制显示
0t:10进制显示


本文永久更新地址:http://www.linuxdiyf.com/linux/21436.html