PAE에는 여전히 4GB가 있습니까?

PAE에는 여전히 4GB가 있습니까?

PAE를 사용하여 32비트 CPU에서 4GB 이상의 RAM을 확보하려고 시도했지만 실패했습니다.

~# grep -o pae /proc/cpuinfo 
pae
pae
pae
pae
~# uname -a
Linux debian 4.9.0-6-686-pae #1 SMP Debian 4.9.82-1+deb9u3 (2018-03-02) i686 GNU/Linux
~# grep HIGHMEM /boot/config-4.9.0-6-686-pae 
# CONFIG_NOHIGHMEM is not set
# CONFIG_HIGHMEM4G is not set
CONFIG_HIGHMEM64G=y
CONFIG_HIGHMEM=y
# CONFIG_DEBUG_HIGHMEM is not set
~# dmidecode -t memory | grep Enabled
    Enabled Error Correcting Capabilities:
    Enabled Size: 1024 MB (Single-bank Connection)
    Enabled Size: 1024 MB (Single-bank Connection)
    Enabled Size: 1024 MB (Single-bank Connection)
    Enabled Size: 1024 MB (Single-bank Connection)
    Enabled Size: 1024 MB (Single-bank Connection)
    Enabled Size: 1024 MB (Single-bank Connection)

게다가

~# free -h
              total        used        free      shared  buff/cache   available
Mem:           3.8G         29M        3.6G         10M        244M        3.5G
Swap:            9G          0B          9G

누군가가 도움을 줄 수도 있습니다. 어디를 봐야 합니까?

답변1

메모리 문제를 진단하려면 커널 부팅 메시지부터 시작하는 것이 가장 좋습니다. 커널은 시스템 메모리에 대해 찾은 모든 것을 인쇄합니다. 의 출력에서 ​​시작하여 dmesg"memory"를 찾습니다.

귀하가 발견한 바와 같이 귀하의 경우 이는 다음을 나타냅니다.

[ 0.000000] WARNING: BIOS bug: CPU MTRRs don't cover all of memory, losing 2176MB of RAM.
[ 0.000000] WARNING: CPU: 0 PID: 0 at /build/linux-rtbsTs/linux-4.9.82/arch/x86/kernel/cpu/mtrr/cleanup.c:978 mtrr_trim_uncached_memory+0x2f5/0x326

이는 BIOS가 6GiB 시스템에 대해 올바르게 설정되지 않았음을 나타냅니다.

관련 정보