PS 命令获取 IBM AIX 和 SunOS Solaris 上的内存、用户、进程信息
我正在寻找最好的 PS 命令来获取尽可能多的信息,主要是内存信息,如 SZ、带用户 ID 的 RSS、PID、完整的命令/进程。
我有两台服务器 IBM AIX 和 SunOS Solaris。我可以为两台服务器使用两个不同的命令。
我已经在 AIX 上尝试过“ps v”、“ps al”、“ps aux”,但正在寻找比这些命令提供更多信息的命令。
I am looking for best PS command to get as much info as possible, mainly memory info like SZ, RSS with userid, pid, complete command/process.
I have two servers IBM AIX and SunOS solaris. I am OK to have two different commands for two servers.
I have tried "ps v", "ps al", "ps aux" on AIX, but looking for command that gives more info than these commands.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于完整的命令行,您必须使用 ucb (Berkely) 版本的 ps - /usr/ucb/ps
在 Solaris 上。 ps -w 可以做到这一点 大多数 Solaris 发行版 (>=8) 似乎并不总是有它的联机帮助页,因此请在此处尝试。如果有,则为
man -s 1B ps
:http://docs.oracle.com/cd/E19683-01/816-0210/6m6nb7mif/index.html
For a full command line you have to use the ucb (Berkely) version of ps - /usr/ucb/ps
on Solaris. ps -w does that Most distributions of Solaris (>=8) don't always seem to have a manpage for it so try here. If you have it is
man -s 1B ps
:http://docs.oracle.com/cd/E19683-01/816-0210/6m6nb7mif/index.html