ps命令:输出正在运行的进程

ps -ef  输出每一个正在系统运行的进程(to see every process on the system using standard syntax)

ps aux(to see every process on the system using BSD syntax)

得到关于线程的信息(to get info about threads)

ps -elf 或者 ps axms

linux下查看某个进程下的线程数量

命令:pstree -p 进程号

示例:

 

 

这个进程号是10096的到底是进程还是线程?

不可而知。linux下进程和线程实现的机制是什么?

我个人认为,linux下的线程也是伪进程,占用的是进程的ID  PID