A site for solving at least some of your technical problems...
A site for solving at least some of your technical problems...
The Linux system offers a set of commands that allow you to read manufacturer information from the command line.
These are decoded as DMI data.
The motherboard info if listed with:
sudo dmidecode --type baseboard | less
The output should at least include a Manufacturer name and a Product Name. The Product Name would be the motherboard name as defined by the manufacturer.
You can also find memory information with:
sudo dmidecode --type memory | less
You should get a list of DIMM slots with information about whether those slots are filled with a DIMM or not. Those with a DIMM should include the memory specification (size, speed, etc.)
Other options include:
The manual page of the dmidecode command includes additional information.
Recent Posts on The Linux Page: