Please remember that
patience is a virtue. Everyone here is a volunteer, so a half day delay between you asking a question and getting a response is normal.
If you type "man free" into a shell, you will see the
manual for the free command. There are also online versions (
like this for example.
Looking at the man page, I can see that free
displays the total amount of free and used physical and swap memory in the system, and the -m switch configures free to report in Mb. So your output indicates that you have 3 Gb of memory, and roughly half of that is in use.
Since you have not provided the complete output from when you ran the free command, it is a bit hard to determine what the 3Gb refers to, however I would assume from your "less than 2 GB" comment that you only have 2GB RAM installed. If this is the case then the 3GB of memory is probably virtual memory.
Jothi wrote:I thought I could install a lot of stuff. I had initially 20 GB of space in the partition where I installed Ubuntu.
The 20 GB is Hard Drive space, not memory. To find out how much hard drive space is still available, type "
df -h" (without the quotes).
Andrew