Quote:
Originally Posted by vinnie_vinodh
OKay 1GB and above for 64 bit .what about 32 bit or x86 Kubuntu with kde4.3.2.
>Do this edition also requires ram more than 1 GB ???
|
I have never used 64 bit Ubuntu, but I currently have Slackware 13.0 both 32 bit and 64 bit editions installed on 2 separate partitions. I really don't see any significant difference between the memory usage on 32 and 64 bit Slackware. So the memory requirements are about the same.
A 32 bit OS can only use up to 4GB memory though; but a 64 bit OS can use a lot more. I forget what the maximum is for a 64 bit OS, but it is a lot. Anyway, increasing the memory from 512mb to 1GB would certainly give you better performance, whether you use 32 bit or 64 bit OS.
Quote:
Originally Posted by vinnie_vinodh
>>Would you mind suggesting me "the best stable Linux distro with
KDE4.3.2 x86 edition ", other than openSuse11.1 ?
openSuse 11.1(x86 live DVD) ran pretty well but was not able to connect to internet .
|
I'm not sure about KDE 4.3.2. However Zenwalk 6.2 has KDE 4.2.4. I am mentioning Zenwalk because Zenwalk is much faster and uses fewer resources than Ubuntu. It is also very stable and pretty easy to use. It installs with XFCE desktop, but KDE is available in the Zenwalk repositories.
http://zenwalk.org/
Concerning the output of the command:
free -m, consider this example from my system:
Code:
bash-3.1$ free -m
total used free shared buffers cached
Mem: 2010 1044 965 0 314 351
-/+ buffers/cache: 378 1631
Swap: 956 0 956
bash-3.1$
Notice the first line says 2010mb total, 1044mb used and 965mb free. But linux caches a lot of stuff in memory for faster access. So to know how much memory is actually being used by the system at present, look at the
-/+ buffers/cache line. It shows that only 378mb is actually being used and 1631 is free. The amount of memory that is cached is under the buffers (314) and cached (351) columns on the far right end of the first line. So 378 used + 314 buffered + 351 cached = (approximately) the 1044mb total that is reported as "used" in the first line.
I just wanted to point this out in case you or anyone else was wondering how to interpret the free -m command.