## Hardware Info - System Information ```bash dmidecode | grep -A4 '^System Information' ``` - Manufacturer ```bash dmidecode -s system-manufacturer ``` - uuid ```bash dmidecode | grep -i uuid | awk '{print $2}' | tr '[:upper:]' '[:lower:]' ``` - Product/Model Name ```bash dmidecode -s system-product-name ``` - Number of CPU Cores ```bash cat /proc/cpuinfo | egrep "core id|physical id" | tr -d "\n" | sed s/physical/\\nphysical/g | grep -v ^$ | sort | uniq | wc -l ``` Sources: [cpu cores](https://www.ryadel.com/en/cpu-cores-threads-number-linux-centos-virtual-machine/)