sudo dmidecode |grep “Product Name:” |head -1
If the above command doesn’t work:
dmidecode |grep -i “vm”
will return nothing on a virtual system and something like “VME (Virtual mode extension)” on a host system.
sudo dmidecode |grep “Product Name:” |head -1
If the above command doesn’t work:
dmidecode |grep -i “vm”
will return nothing on a virtual system and something like “VME (Virtual mode extension)” on a host system.