![]() |
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| Linux RedHat, Ubuntu, SUSE, Fedora, Debian, Mandriva, Slackware, Gentoo linux, PCLinuxOS. All Linux questions here! |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| How to deal with lots of data in memory in order not to run out of memory | emitrax | High Level Programming | 1 | 05-28-2009 10:09 AM |
| How to find Total and Free Physical Memory and Logical Memory in SOLARIS 9 | 0ktalmagik | SUN Solaris | 4 | 02-03-2009 09:37 AM |
| How can I get memory usage or anything that show memory used from sar file? | panithat | HP-UX | 1 | 03-31-2008 12:26 PM |
| how to round up a memory address(memory alignment problem) | nj302 | High Level Programming | 6 | 09-21-2005 08:57 PM |
| Shared memory shortage but lots of unused memory | cjcamaro | UNIX for Advanced & Expert Users | 1 | 10-13-2004 05:10 PM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
||||
|
Quote:
It's not too bad right now -- I only started the system 8 hours ago. Code:
~$ free -m
total used free shared buffers cached
Mem: 3401 1913 1488 0 96 484
-/+ buffers/cache: 1331 2069
Swap: 5083 0 5083
|
|
||||
|
The key line in your free output is the buffers/cache line.
Linux will make use of unused memory, and you want it to do this. I will cache things it thinks it may need in the future, almost like read-ahead on hard drives (very simple example and not totally accurate, but works for this). As an application requires more memory, the kernel will flush some of the cache out to free up memory. So looking at that output, you have slightly over 2GB free. |
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|