lsof小结

 通常root用户才能执行lsof命令,普通用户能够看见/usr/sbin/lsof命令,可是普通用户执行会显示“permission denied”tcp

我总结一下lsof指令的用法:ide

lsof abc.txt 显示开启文件abc.txt的进程spa

lsof -i :22 知道22端口如今运行什么程序进程

lsof -c abc 显示abc进程如今打开的文件it

lsof -g gid 显示归属gid的进程状况io

lsof +d /usr/local/ 显示目录下被进程开启的文件class

lsof +D /usr/local/ 同上,可是会搜索目录下的目录,时间较长ftp

lsof -d 4 显示使用fd为4的进程搜索

lsof -i 用以显示符合条件的进程状况service

语法: lsof -i[46] [protocol][@hostname|hostaddr][:service|port]

46 --> IPv4 or IPv6

protocol --> TCP or UDP

hostname --> Internet host name

hostaddr --> IPv4位置

service --> /etc/service中的 service name (能够不仅一个)

port --> 端口号 (能够不仅一个)

例子: TCP:25 - TCP and port 25

@1.2.3.4 - Internet IPv4 host address 1.2.3.4

tcp@ohaha.ks.edu.tw:ftp - TCP protocol hosthaha.ks.edu.tw service name:ftp

lsof -n 不将IP转换为hostname,缺省是不加上-n参数

例子: lsof -i tcp@ohaha.ks.edu.tw:ftp -n

lsof -p 12 看进程号为12的进程打开了哪些文件

lsof +|-r [t] 控制lsof不断重复执行,缺省是15s刷新

-r,lsof会永远不断的执行,直到收到中断信号

+r,lsof会一直执行,直到没有档案被显示

例子:不断查看目前ftp链接的状况:lsof -i tcp@ohaha.ks.edu.tw:ftp -r

lsof -s 列出打开文件的大小,若是没有大小,则留下空白

lsof -u username 以UID,列出打开的文件

 

通常root用户才能执行lsof命令,普通用户能够看见/usr/sbin/lsof命令,可是普通用户执行会显示“permission denied”

我总结一下lsof指令的用法:

lsof abc.txt 显示开启文件abc.txt的进程

lsof -i :22 知道22端口如今运行什么程序

lsof -c abc 显示abc进程如今打开的文件

lsof -g gid 显示归属gid的进程状况

lsof +d /usr/local/ 显示目录下被进程开启的文件

lsof +D /usr/local/ 同上,可是会搜索目录下的目录,时间较长

lsof -d 4 显示使用fd为4的进程

lsof -i 用以显示符合条件的进程状况

语法: lsof -i[46] [protocol][@hostname|hostaddr][:service|port]

46 --> IPv4 or IPv6

protocol --> TCP or UDP

hostname --> Internet host name

hostaddr --> IPv4位置

service --> /etc/service中的 service name (能够不仅一个)

port --> 端口号 (能够不仅一个)

例子: TCP:25 - TCP and port 25

@1.2.3.4 - Internet IPv4 host address 1.2.3.4

tcp@ohaha.ks.edu.tw:ftp - TCP protocol hosthaha.ks.edu.tw service name:ftp

lsof -n 不将IP转换为hostname,缺省是不加上-n参数

例子: lsof -i tcp@ohaha.ks.edu.tw:ftp -n

lsof -p 12 看进程号为12的进程打开了哪些文件

lsof +|-r [t] 控制lsof不断重复执行,缺省是15s刷新

-r,lsof会永远不断的执行,直到收到中断信号

+r,lsof会一直执行,直到没有档案被显示

 

例子:不断查看目前ftp链接的状况:lsof -i tcp@ohaha.ks.edu.tw:ftp -r

lsof -s 列出打开文件的大小,若是没有大小,则留下空白

lsof -u username 以UID,列出打开的文件

相关文章
相关标签/搜索