/0/3 memory 4GiB System Memory
/0/3/0 memory 4GiB SODIMM DDR4 Synchronous Unbuffered (Unregistered) 2133 MH
/0/3/1 memory [empty]
The first line of /0/3
is the group of RAM 4GiB System Memory
total in the system. If you add another RAM module that number will change. It shows one slot available in the /0/3
group (one occupied in /0/3/0
and one available in /0/3/1
). However, without physically checking it is hard to tell. Some laptops were made with the connector for the RAM, but the slot wasn't soldered to the board.
You can use inxi
to determine the max amount of RAM and slots.
Example:
sudo inxi -mx
Memory:
RAM: total: 23.40 GiB used: 2.49 GiB (10.6%)
Array-1: capacity: 32 GiB note: est. slots: 4 EC: None
max module size: 8 GiB note: est.
Device-1: A0 size: 4 GiB speed: 1333 MT/s type: Unknown
Device-2: A1 size: 4 GiB speed: 1333 MT/s type: Unknown
Device-3: A2 size: 8 GiB speed: 1333 MT/s type: Unknown
Device-4: A3 size: 8 GiB speed: 1333 MT/s type: Unknown
Above we can see the maximum this board will take is 32GiB or 4 x 8GiB (max module size which means a 16GiB possibly will not work since it states est
or estimated).
Hope this helps!