Home | Mirror | Search

4. Processes

4.1. strace - trace system calls and signals

$ strace -f -F lighttpd
		

4.2. lsof - list open files

$ sudo lsof -c lighttpd
		

4.2.1. 誰打開了該檔案

顯示打開檔案filename的進程

lsof filename
			

4.2.2. 誰在占用連接埠

什麼程序運行在22連接埠上

lsof -i :22
			

4.2.3. 該進程打開了那些檔案

顯示httpd進程現在打開的檔案

lsof -c httpd
			

-p 進程ID

pgrep httpd
lsof -p 1782
			
comments powered by Disqus