Joseph Zikusooka ~ Zik

A software engineer specializing in open source technologies | Very experienced in building and configuring UNIX/Linux systems and servers. Passionate about developing software applications and hardware for the smart home | Currently serving as the CEO of Jambula Labs and the project leader at JambulaTV, a smart home automation and entertainment platform - https://jambulatv.com | This blog focuses on the following areas: Linux How-Tos and Tutorials ::: IT Security News ::: Free and Libre Open Source Software ::: Smart Home Software ::: Digital Innovations in East Africa https://mastodon.social/@jzik | https://github.com/zikusooka

Quickly identify a Linux system’s motherboard details such as Vendor Name, Model, Serial Number, BIOS version, etc

for i in /sys/class/dmi/id/*; do echo $i:$(<$i); done | less

You can also use other tools like: dmidecode

Quickly identify a Linux system’s motherboard details such as Vendor Name, Model, Serial Number, BIOS version, etc
Scroll to top