#count all open file handles command
lsof | wc -l
#List File Descriptors in Kernel Memory
sysctl fs.file-nr
#List File Opened By a PID
- find id by command ps aux
- lsof -p <pid> | lso -a -p <pid>
OR
cd /proc/<pid>/fd
ls -l | wc -l
0 people found this article useful
0 people found this article useful