在 Solaris 中查找进程的物理内存详细信息的命令
如何在 Solaris 中查找进程(例如调度进程)的总物理内存和可用物理内存。有可用的命令吗?请提供一个例子。
How do I find total physical memory and available physical memory of a process(for e.g. sched process) in Solaris. Are there any commands available? Please provide with an example.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
要了解 Solaris 可用内存使用总量
要显示“进程”内存,必须使用“pmap”命令,如手册页所述
显示有关进程地址空间的信息
例如,如果我们有 PostgreSQL DB (5057) 的进程 ID (pid),您可以使用“-x”标志检查“eXtended”信息, 我希望
它会有用,
Urko,
To known the total Solaris Available memory use
To display "process" memory, you must use the "pmap" command, as man page says
display information about the address space of a process
For example, if we have a process id (pid) for PostgreSQL DB (5057), you can check "eXtended" information using the "-x" flag, as
I hope it will be useful,
Urko,
总物理内存:
可用物理和虚拟内存:
顺便说一句,“sched”实际上并不是一个进程,而是内核。
Total physical memory:
Available physical and virtual memory:
By the way, "sched" isn't really a process but the kernel.