0

Possible Duplicate:
32-bit Windows Server address > 4GB RAM - How?

I know that for 32-bit OS, the addressable memory space for each process is "4G" (maybe just 3G in user space...). If I have a 8G RAM, is it correct that all of the processes can still utilize (shared) these 8G memory but each of them are limited to a maximum 4G? Or the whole system only can see and utilize 4G out of 8G and thus having 8G RAM on a 32-bit OS is the same as having 4G RAM on it?

3 Answers3

2

On 32bit systems applications can map over 3GB (on Linux up to 64GB) of RAM using so called PAE (Physical Address Extension) support.

ismail
  • 129
0

In most linux distributions you need a patched kernel that can address the extra ram. It is usually a "bigmem" kernel.

0

You are correct that a process under Linux is limited to 3G in userspace.

Being a 32bit OS, this means that at any one time there are only 2^32 addresses available (therefore 4G). Using technologies such as PAE, you can have up to 2^36 bytes physical RAM.

The task of mapping "only" 2^32 addresses at any one time is handled by the MMU (Memory Management Unit) using TLB entries (Translation Lookaside Buffer). It is, however, the role of the OS to tell the MMU to load/evict TLB entries.

fge
  • 318