Ubuntu – lshw not showing individual memory bank info

ram

This is all I get:

sudo lshw -C memory
  *-memory                
       description: System memory
       physical id: 0
       size: 7981MiB

sudo lshw doesn't give any more info. lshw used to show individual memory banks.

What am I doing wrong?

Best Answer

use :

 lshw -class memory

try it without sudo .

or use sudo dmidecode --type 17

Related Question