Operating System - Linux
1819792 Members
3087 Online
109607 Solutions
New Discussion юеВ

finding the serial number on linux

 
SOLVED
Go to solution
Wood_2
Frequent Advisor

finding the serial number on linux

What is the command line to find the serial number of blade server.


7 REPLIES 7
Steven E. Protter
Exalted Contributor

Re: finding the serial number on linux

Shalom,

Thats is hardware specific and will vary from vendor to server vendor.

You will probably need a utility from the blade server seller.

This contrasts to HP-UX which has such commands because there is only ONE hardware vendor and its the OS vendor. Different situation in Linuxland.

SEP
Steven E Protter
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
Wood_2
Frequent Advisor

Re: finding the serial number on linux

Yes,

I'm looking for the good software, for Blade/Proliant Hp servers.

Have you an idea about the good product ?
Beno├оt
Regular Advisor

Re: finding the serial number on linux

Hi,

You may try to script a command thru ssh to the ilo of the server.

Ben
Beno├оt
Regular Advisor

Re: finding the serial number on linux

ssh "show system1" | grep number

or

ssh "show system1" | grep number | cut -c 12-

These commands will just ask you for ILO password.

Patrick Lampert_1
Occasional Advisor
Solution

Re: finding the serial number on linux

On recent RHEL releases you can run the dmidecode command from the shell prompt to get the serial number.
Example:

# dmidecode
...
System Information
Manufacturer: Compaq
Product Name: Deskpro
Version: Not Specified
Serial Number: 6121GGGZT251
Wood_2
Frequent Advisor

Re: finding the serial number on linux

Wonderful

It works fine on rhel et suse 9

Thank you
Wood_2
Frequent Advisor

Re: finding the serial number on linux

Thank you