QUESTION : On Linux, I know that I can list active network connections with lsof -i or netstat. However, as […]
Tag: lsof
Why Does Issuing One lsof Launches Two Processes?
QUESTION : I’m on current OS X 10.7. Sometimes I want to check which application locks a certain file. I […]
How can I find all files open within a given directory?
Problem : I know I can use lsof to list open files, and I know I can use find to […]
Better use of lsof in Linux?
Problem : I’m looking for a way to list open files by the Flash plugin (whether Firefox or Chrome). I […]
How many files should be listed as open under lsof?
Problem : I am not an advanced Linux user. I have a VPS with 768MB of RAM running CentOS. I […]
Counting the number of open files for each user?
Problem : I am looking for a command that would list me number of open files for each user, sorted […]
why the result of lsof | grep pid | wc -l and lsof -p pid |wc -l is different?
Problem : why the result of lsof | grep pid | wc -l and lsof -p pid |wc -l is […]