Linux - Linux find hardware make model serial number, How to find server serial number make and model

Linux find hardware make model serial number

How to find server serial number make and model?
How do you search for hardware information on a server? In linux dmidecode is a command which is used to find hardware info of a server. When there is necessity to find server make and model you can use the dmidecode to find it. dmidecode is used for various purpose to find hardware related info of a linux server.

how to find server serial number make and model
# dmidecode -t 1

Output
# dmidecode 2.9
SMBIOS 2.4 present.

Handle 0x0100, DMI type 1, 27 bytes
System Information
        Manufacturer: HP
        Product Name: ProLiant DL380 G5
        Version: Not Specified
        Serial Number: xxxxxxxxx
        UUID: xxxxxxxxx-xxxx-xyzpqr-1234-abcdxxxxxx
        Wake-up Type: Power Switch
        SKU Number: xxxxxx-yyyy
        Family: ProLiant

How to find only serial number of a linux server
 # dmidecode | grep -i serial

The topic on Linux - Linux find hardware make model serial number is posted by - Guru

Hope you have enjoyed, Linux - Linux find hardware make model serial numberThanks for your time

Tech Bluff