Linux - How to monitor memory usage

Linux - How to monitor memory usage

 
Question : How to monitor memory [%MEM] in Linux?
Answer : ps command can be used to report a snapshot of the current processes in Linux. Use option aux and sort based on the column to get the top usage based on the parameter you need. If you need to get %MEM then you will need to sort column 4.
Example :
[root@server ~]# watch -n 2 'echo `ps aux |head -1`;ps aux |sort -nrk 4| head -10'
Note : Above command will output top 10 processes with highest %MEM in an interval of 2 seconds.


Question : How to monitor memory [%MEM] in Linux?
Answer : Besides using method above, top command can be used to monitor %MEM in Linux. Issue command top. It will display a list of processes sorted based on CPU usage. Then issue "M" to sort based on %MEM. Alternative issue top with option "m".
Example :
[root@server ~]# top -m


Question : How to monitor free and used memory in Linux?
Answer : free command can be used to monitor free and used memory in Linux. To include a line containing total memory and swap option "t" can be used. Option "m" can be used display value in megabytes [MB]. Option "s" along with a interger value can be used to specific interval of monitoring needed.
Example :
[root@server ~]# free -mt -s 3
total used free shared buffers cached
Mem: 7979 7665 313 0 191 5777
-/+ buffers/cache: 1696 6282
Swap: 32767 0 32767
Total: 40747 7665 33081


Question : How to monitor memory [%MEM] of a specific process in Linux?
Answer : top command with option "p" followed by PID can be used to specific which process to monitor.
Example :
[root@server ~]# top -p <PID>
0 (0)
Article Rating (No Votes)
Rate this article
Attachments
There are no attachments for this article.
Comments
There are no comments for this article. Be the first to post a comment.
Full Name
Email Address
Security Code Security Code
Related Articles RSS Feed
how to list all hard disks in linux from command line
Viewed 3356 times since Mon, Jan 28, 2019
RHEL: Extending the maximum inode count on a ext2/ext3/ext4 filesystem
Viewed 3072 times since Sun, May 27, 2018
Understanding logrotate utility part 1
Viewed 1664 times since Fri, Nov 30, 2018
30 Handy Bash Shell Aliases For Linux / Unix / MacOS
Viewed 4542 times since Thu, Feb 11, 2021
RHCS6: Install a two-node basic cluster
Viewed 3331 times since Sun, Jun 3, 2018
RHEL: GPT/MBR partition tables (using disks larger than 2 TiB)
Viewed 12181 times since Sun, May 27, 2018
Nagrywanie sesji SSH do pliku
Viewed 2851 times since Thu, May 24, 2018
RHEL: Scan and configure new SAN (fibre channel) LUNs
Viewed 7906 times since Sun, May 27, 2018
Enabling or disabling a repository using Red Hat Subscription Management
Viewed 9122 times since Mon, Oct 29, 2018
How to retrieve and change partition’s UUID Universally Unique Identifier on linux
Viewed 2953 times since Tue, Jul 17, 2018