Blogs1 - 9 of 9 recent posts for tag:"vmstat"
08
Feb
2012
Linux Check Memory Usage Command Line

3 days ago by baddoel

Sometimes, someone like to asking how do I check used and free RAM memory usage under Linux operating systems using command line. Linux comes with different set of commands to check memory usage. The free command displays the total amount of free and used physical and swap memory in the system, as w ...

Becouz.Net - becouz.net · 10 references

01
Feb
2012
Performance tuning tools Part 3 : vmstat

10 days ago by Darth Perelius

El correcto monitore de la memoria es clave para el buen performance de un server por lo que es necesario tambien entender sus bases para llevarlo a cabo correctamente. El vmstat nos ayudara a ver la interaccion de la memoria RAM y la virtual. Uno debe entender la diferencia entre paging y swapping: ...

TuXioN - tuxion.blogspot.com

30
Jan
2012
Using RAM for transient data

12 days ago by yeupou

When a system have lots of I/O, trouble may arise. If an optical hard drive is über-solicited, quite easily you may get many kinds of failures, high CPU load, just because of I/O errors. In such case, using RAM as disk, aka RAM disk, may be a good option, as it allows way more I/O than an optical ha ...

# cd /scratch - yeupou.wordpress.com · 2 references

20
Jan
2012
vmstat :: Detect Problems That Can Adversely Affect System Performance

22 days ago by Abner Elijah Udali

Just using a lot of swap space doesn’t necessarily mean that you need more memory. Here’s how to tell when Linux is happy with the available memory and when it needs more. Linux novices often find virtual memory mysterious, but with a grasp of the fundamental concepts, it’s easy to understand. With ...

Abner Udali's Weblog - abneru.wordpress.com · 1 reference

10
Dec
2011
One liner: To get available virtual memory

63 days ago by Shafiq Issani

vmstat -s -SM | grep "free memory" | awk -F" " '{print$1}' Filed under: Uncategorized Tagged: available virtual memory, AWK, Grep, linux, Programming, virtual memory, vmstat

Shafiq Issani - shafiqissani.wordpress.com · 1 reference

28
Sep
2011
vmstat命令总结

136 days ago by darkmi

vmstat是Linux下查看虚拟内存(Virtual Memory)使用状况的一个工具,简单总结了一下其使用。 虚拟内存运行原理 在系统中运行的每个进程都需要使用到内存,但不是每个进程都需要每时每刻使用系统分配的内存空间。当系统运行所需内存超过实际的物理内存,内核会释放某些进程所占用但未使用的部分或所有物理内存,将这部分资料存储在磁盘上直到进程下一次调用,并将释放出的内存提供给有需要的进程使用。 在Linux内存管理中,主要是通过“调页Paging”和“交换Swapping”来完成上述的内存调度。调页算法是将内存中最近不常使用的页面换到磁盘上,把活动页面保留在内存中供进程使用。交换技术是将整 ...

darkmi'blog - blog.darkmi.com · 1 reference

02
Sep
2011
Linux WEB服务器性能调优 – 工具箱

162 days ago by 某L

以下是这两天调优的小笔记。第一部分 – 工具 工具 top top 命令用于互动查看系统情况,相信linux用户都用过。 备注:H 可以显示线程 u 可以指定用户 ps ps可以列出进程状态,最经典的用法就是 ps aux 不过我更喜欢加上 ps aux -H 可显示进程层次 另外 ps aux -T 可以显示线程 pstree 以树形方式简单直接显示进程,常用 pstree –ph (带线程) lsof 使用它既可以知道进程打开了哪些文件,也可以了解一个文件被哪个进程打开。 一般需配合 grep 使用,对于前面几个工具,发现状态经常为D IOWait较高的情况,最适合用lsof分析原因。 举 ...

Himmel - lazing.ave7.net

18
Aug
2011
Linux系统性能分析之iostat与vmstat

177 days ago by 羽飞

iostat监视I/O子系统情况 iostat是I/O statistics(输入/输出统计)的缩写,iostat工具将对系统的磁盘操作活动进行监视。它的特点是汇报磁盘活动统计情况,同时也会汇报出CPU使用情况。同vmstat一样,iostat也有一个弱点,就是它不能对某个进程进行深入分析,仅对系统的整体情况进行分析。 iostat的语法如下: iostat [ -c | -d ] [ -k ] [ -t ] [ -V ] [ -x [ device ] ] [ interval [ count ] -c为汇报CPU的使用情况; -d为汇报磁盘的使用情况; -k表示每秒按kilobytes字节 ...

羽飞博客 - opsers.org

10
Jun
2011
Watch coomand

246 days ago by stanlo

Use the watch command to highlight changes in vmstat & iostat watch -d --interval=1 iostat -xc watch --color -d --interval=1 vmstat

Linux - stanlo-linux.blogspot.com