linux 学习四

Processes in Linux
How to view all running process?
The following command shows all the process from your computer

1.ps aux	:The following command shows all the processes from your computer
2.ps aux | grep firefox	:find a particular process
3.kill pid
4.lsof # Finding out list of open files
5.top # top is a very useful command while using a linux system. it's a quick way to know about all the running processes in the system

猜你喜欢

转载自blog.csdn.net/weixin_42262889/article/details/89576360