Also Watch: TSM Tutorial videos on Youtube Channel - Subscribe
Also Read: Storage Area Network (SAN) Basic Free Tutorials
Also Read: Storage Area Network (SAN) Basic Free Tutorials
Listing AIX Open Files
lsof
lsof is a useful command to list open files. When lsof is called without parameters, it will show all the files opened by any processes. Below are listed with some examples the use of lsof
To See which process use a library
- lsof /dir
Show what files are opened by processes whose names starts by "s" (smb...).
- lsof -c s
- lsof -c smb
Show what files are opened by processes whose names starts by "smb", but exclude those whose owner is the user "toto":
- lsof -c courier -u ^toto
Show the processes opened by user toto :
- lsof -u toto
Show what files are using the process (PID 86397):
- lsof +p 86397
Search for all opened instances of directory /tmp and all the files and directories it contains:
- lsof +D /tmp
List all opened internet sockets and sockets related to port 80:
- lsof -i
- lsof -i :80
List all opened Internet and UNIX domain files:
- lsof -i -U
Show what process(es) has an connection opened to or from the host www.arcudi.org :
- lsof [email protected]
Useful link to lsof :
0 Comment to "How to list open files in AIX Operating System"
Post a Comment