O PAE ainda tem 4GB

0

Tentando obter mais de 4 GB de RAM em CPUs de 32 bits com PAE, mas não é possível.

~# 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)

Ainda tenho

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

Talvez alguém possa ajudar, onde estou?

    
por mikst 28.03.2018 / 23:16

1 resposta

0

Para diagnosticar problemas de memória, o melhor lugar para começar são as mensagens de inicialização do kernel; o kernel imprime tudo o que encontra em relação à memória do sistema. Comece com a saída de dmesg , procurando por "memória".

Como você descobriu, no seu caso, isso mostra

[ 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

que sugere que o BIOS não está configurando as coisas corretamente para um sistema 6GiB.

    
por 06.04.2018 / 12:50