anexanhume said:
Sweet! Gotta love the 10 to 2MB of memory left available! Thankfully, I don't think anyone will find a good reason to run something as fancy as xubuntu.
Time for a lesson in how linux uses its memory.
CODE
total used free shared buffers cached
Mem: 8199496 6106760 2092736 0 58348 4836408
-/+ buffers/cache: 1212004 6987492
Swap: 5855416 2052 5853364
If you see this, your responce will be, from the 8GB, there is only 2GB free?
*biep* wrong. Linux has the ability to cache almost any data, unlike windows that never full uses its memory. If you put 4GB or 8GB in a XP system, well, nice but almost very useless ( it leaves most of the memory empty ). Hell, given the choice, windows will still use its freaking swap file! Because Linux caches all the data, it does not need to access the HD's as much ( one of the reasons i put 8GB in this workstation/server ).
To know the true free memory on a Linux system:
Total: 8199496 ( 8GB )
- free: 2092736
- buffer: 58348
- cached: 4836408
Total used = 1212004 aka 1.2GB of the 8GB are used.
So, based on the data at the end of the clip, the amount of free memory is: 2224 + 45460 = 47.684MB free memory. Also, don't forget, the moment you close firefox, a lot of memory is released again, because the page caching firefox does, is counted as used memory ( aka, its not seen as part of the linux cache, so linux can't delocate it when you start a few other big programs, and it will end up writing firefox's memory to the swap ).
Linux experts, is this about right?