Here is one of the most frequently asked questions from my mailbag:
Hey I need to know how much ram memory I have in my Ubuntu Linux computer. Under Windows XP I can find out memory by visiting Start > Control Panels > System in control panel. So how do I find out RAM information under Linux PC?
The best way to find out RAM information is open a terminal and type the following command:
$ free -m
OR
$ free -mt
Output:
total used free shared buffers cached
Mem: 2008 1837 170 0 50 963
-/+ buffers/cache: 822 1185
Swap: 1027 0 1027
free command print the total amount of free and used physical and swap memory in the system, as well as the buffers used by the Linux kernel. You can pass following options
- -b switch displays the amount of memory in bytes
- -k switch (set by default) displays it in kilobytes
- -m switch displays it in megabytes.
- -t switch displays a line containing the totals.
- -o switch disables the display of a "buffer adjusted" line. If the -o option is not specified, free subtracts buffer memory from the used memory and adds it to the free memory reported.
- -s switch activates continuous polling delay seconds apart. You may actually specify any floating point number for delay, usleep(3) is used for microsecond resolution delay times.
GUI tool - gnome-system-monitor
The gnome-system-monitor provides an overall view of the resource usage on your system, including memory and CPU allocation. Start gnome-system-monitor from Menus or just type:
$ gnome-system-monitor &

Another Good system monitor - Conky
Conky is a system monitor for X originally based on the torsmo code but kickass :). Run apt-get command to install conky:
$ sudo apt-get install conky
Conky can display just about anything, either on your root desktop or in it’s own window. Conky has many built-in objects, as well as the ability to execute programs and scripts, then display the output from stdout.
To start conky copy default config file and type conky at shell prompt:
$ zcat /usr/share/doc/conky/examples/conkyrc.sample.gz > .conkyrc
$ conky &
OR
$ conky -a left_top &
Read man page of conky for more customization options.
phpSysInfo - PHP script that displays information such as RAM, CPU et all
You can obtained pretty much same information over Internet using webbased php tool called phpSysInfo.
I'd love to hear if anyone has used additional cool GUI tool like conky for this kind of system analysis/monitoring.
Featured Articles:
- 20 Linux System Monitoring Tools Every SysAdmin Should Know
- 20 Linux Server Hardening Security Tips
- 10 Greatest Open Source Software Of 2009
- My 10 UNIX Command Line Mistakes
- Top 5 Email Client For Linux, Mac OS X, and Windows Users
- Top 20 OpenSSH Server Best Security Practices
- Top 10 Open Source Web-Based Project Management Software
- Top 5 Linux Video Editor Software
- Email this to a friend
- Download PDF version
- Printable version
- Comment RSS feed
- Last Updated: Jul/26/2007





{ 8 comments… read them below or add one }
> I’d love to hear if anyone has used additional cool GUI tool
Heh, ksysguard of course! Much more flexible than other tools.
xio,
Just installed ksysguard, looks good and very simple :)
vivek,
The point is that you can create as many tabs as you wish with arbitrary number of graphs – just drag’n'drop a sensor from the left panel (choose from _lots_ of them), then you will be promted for the graph type. After that it will be possible to set many different properties for the graphs. I call this ‘flexibility’ and it is IMO KDE by its nature :)
Gah! Vivek, `cat /proc/meminfo` :)
xio,
Heh, somehow I missed that one too but for newbie free command is the best way to go, IMPO
Latest version of linux will wwokr
free -g :# will show in GB
username@ubuntu:~$ free -m
total used free shared buffers cached
Mem: 2007 1594 412 0 48 833
-/+ buffers/cache: 713 1294
Swap: 3153 2 3151
But gnome-system-monitor shows 765MB of 2GB used ! How come the difference ?
Ananesh,
free -m barely uses any memory where ass gnome-system-monitor has to load itself into the ram, thus the difference ;)