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
🐧 Get the latest tutorials on Linux, Open Source & DevOps via:
- RSS feed or Weekly email newsletter
- Share on Twitter • Facebook • 3 comments... add one ↓
Category | List of Unix and Linux commands |
---|---|
File Management | cat |
Firewall | Alpine Awall • CentOS 8 • OpenSUSE • RHEL 8 • Ubuntu 16.04 • Ubuntu 18.04 • Ubuntu 20.04 |
Network Utilities | dig • host • ip • nmap |
OpenVPN | CentOS 7 • CentOS 8 • Debian 10 • Debian 8/9 • Ubuntu 18.04 • Ubuntu 20.04 |
Package Manager | apk • apt |
Processes Management | bg • chroot • cron • disown • fg • jobs • killall • kill • pidof • pstree • pwdx • time |
Searching | grep • whereis • which |
User Information | groups • id • lastcomm • last • lid/libuser-lid • logname • members • users • whoami • who • w |
WireGuard VPN | Alpine • CentOS 8 • Debian 10 • Firewall • Ubuntu 20.04 |
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.