Q. Physical Address Extension (PAE) refers to a feature of x86 and x86-64 processors that allows more than 4G bytes of physical memory to be used in 32-bit systems. The x86 architecture presently uses only 36 bits out of 52 bits possible. On x86-64 processors, PAE is obligatory in native long mode; currently 40 bits are used out of 52 bits possible. How do I find out if my Linux kernel supports 36-bit or more physical addressing?
A. You can easily find this information by visiting /proc/cpuinfo file. cat /proc/cpuinfo and look for the physical address size. You can also use grep command extract exact information:
cat /proc/cpuinfo
OR
grep physical /proc/cpuinfo
Sample output:
physical id : 0 address sizes : 36 bits physical, 48 bits virtual physical id : 3 address sizes : 36 bits physical, 48 bits virtual physical id : 0 address sizes : 36 bits physical, 48 bits virtual physical id : 3 address sizes : 36 bits physical, 48 bits virtual
You should follow me on twitter here or grab rss feed to keep track of new changes.
Featured Articles:
- 30 Handy Bash Shell Aliases For Linux / Unix / Mac OS X
- Top 30 Nmap Command Examples For Sys/Network Admins
- 25 PHP Security Best Practices For Sys Admins
- 20 Linux System Monitoring Tools Every SysAdmin Should Know
- 20 Linux Server Hardening Security Tips
- Linux: 20 Iptables Examples For New SysAdmins
- Top 20 OpenSSH Server Best Security Practices
- Top 20 Nginx WebServer Best Security Practices
- 20 Examples: Make Sure Unix / Linux Configuration Files Are Free From Syntax Errors
- 15 Greatest Open Source Terminal Applications Of 2012

- My 10 UNIX Command Line Mistakes
- Top 10 Open Source Web-Based Project Management Software
- Top 5 Email Client For Linux, Mac OS X, and Windows Users
- The Novice Guide To Buying A Linux Laptop






![Explains: Linux linux-gate.so.1 Library / Dynamic Shared Object [ vdso ]](http://s13.cyberciti.org/images/shared/rp/3/16.jpg)




![Linux: Find Out Open Files [ Descriptors ] Command](http://s13.cyberciti.org/images/shared/rp/3/23.jpg)


{ 3 comments… read them below or add one }
Not worked on Debian etch with Xeon processors.
This doesn’t work on ubuntu 8.10 either.
~$ grep physical /proc/cpuinfo
physical id : 0
physical id : 0
Address sizes isn’t displayed.
Some info: The generic kernel doesn’t support more than 3GB RAM. the “server” kernel does support it.
Can you give more information about current kernel and CPU? This is more applicable to 64 bit XEON CPUs.