ps
命令是Linux中的一个基本命令,全称为Process Status,用于显示当前系统的进程状态。它可以列出系统中当前运行的进程列表,以及它们的PID和其他属性。
ps
命令在所有主流的Linux发行版中都可以使用,包括但不限于Ubuntu, Debian, Fedora, CentOS等。在不同的Linux发行版中,ps
命令的用法基本相同。
[linux@bashcommandnotfound.cn ~]$ ps
ps
命令的基本语法如下:
ps [options]
以下是ps
命令的一些常用选项:
选项 | 说明 |
---|---|
-A | 显示所有进程 |
-e | 显示所有进程 |
-a | 显示除会话领导和与终端无关的所有进程 |
-T | 显示与此终端相关的所有进程 |
-r | 显示所有正在运行的进程 |
-u user | 显示特定用户的进程 |
以下是一些ps
命令的使用实例:
[linux@bashcommandnotfound.cn ~]$ ps
[linux@bashcommandnotfound.cn ~]$ ps -A
[linux@bashcommandnotfound.cn ~]$ ps -T
[linux@bashcommandnotfound.cn ~]$ ps -r
[linux@bashcommandnotfound.cn ~]$ ps -u root
[linux@bashcommandnotfound.cn ~]$ ps aux --sort=-uid,-pcpu
[linux@bashcommandnotfound.cn ~]$ ps -A --sort=pid
[linux@bashcommandnotfound.cn ~]$ ps -u root --sort=-pcpu
[linux@bashcommandnotfound.cn ~]$ ps aux --sort=-pmem
[linux@bashcommandnotfound.cn ~]$ ps -u root --sort=-pmem
[linux@bashcommandnotfound.cn ~]$ ps -A --sort=start_time
[linux@bashcommandnotfound.cn ~]$ ps -u root --sort=start_time
如果你在使用ps
命令时遇到了bash: ps: command not found
的错误,那么可能是你的系统中没有安装ps
命令。你可以通过你的包管理器(如apt, yum, dnf等)来安装它。
更多详细内容可以参考:
linux入门学习教程 - Linux入门自学网
Linux下ps命令用法详解:如何查看和管理系统进程(附实例教程和注意事项)