我有 HP-UX 盒子。我需要编写 shell 脚本来查看交换内存。很遗憾。该盒子没有 swapinfo 命令。有没有其他方法可以查看交换使用百分比?
请注意,这里不允许我们安装任何东西。
答案1
虽然您会得到不同的数字(由于预期用途),但您可能会发现摘要行top
很有用,因为它显示了总实际内存和虚拟内存以及已使用的内存量:
Memory Data
Includes virtual and real memory in use (with the amount of
memory considered "active" in parentheses) and the amount of
free memory.
还,vmstat
可以提供有用的信息:
memory Information about the usage of virtual and real
memory. Virtual pages are considered active if they
belong to processes that are running or have run in
the last 20 seconds.
avm Active virtual pages
free Size of the free list
进一步阅读:
答案2
交换的确切命令是swapon
switch s
(像这样swapon -s
)将帮助您获得交换空间。也会free -tm
对你有所帮助。