Operating System - HP-UX
1832891 Members
2441 Online
110048 Solutions
New Discussion

How to find machine serial no.

 
SOLVED
Go to solution
praveen..
Super Advisor

How to find machine serial no.

Hi,
How to find machine serial no. in hp-ux b.11.11


#machinfo command is not working in hp-ux b.11.11

I am able to find the machinfo in hp-ux b.11.23
7 REPLIES 7
Robert-Jan Goossens_1
Honored Contributor
Solution

Re: How to find machine serial no.

Hi,

What's my system's serial number?
a5:/ 107 > echo "selclass qualifier system;info;wait;infolog" | /usr/sbin/cstm | grep "System Serial Number"
System Serial Number...: AB12345678
a5:/ 108 >

http://mirrors.develooper.com/hpux/faq.html

Regards,
Robert-Jan
john korterman
Honored Contributor

Re: How to find machine serial no.

Hi,

if you have ignite installed, it maybe in the output of the print_manifest command

regards,
John K.
it would be nice if you always got a second chance
Raj D.
Honored Contributor

Re: How to find machine serial no.

Praveen,

Here it is :

# echo "selclass qualifier system;info;wait;infolog" | /usr/sbin/cstm | grep -i "System serial"
System Serial Number...: USC5639807
#


Cheers,
Raj.
" If u think u can , If u think u cannot , - You are always Right . "
Sp4admin
Trusted Contributor

Re: How to find machine serial no.

Hi Praveen,

You can get the serial number and a LOT more information with this command. The first two lines of out put will list the serial number and model number..

#print_manifest

sp,
dattu_1
Regular Advisor

Re: How to find machine serial no.

Hi praveen,

getconf MACHINE_SERIAL

NNNJOYYYY
inventsekar_1
Respected Contributor

Re: How to find machine serial no.

something i am missing. i dont know why or how.

11.23 ia64
# getconf MACHINE_SERIAL
US34072972

in print_manifest output i am not able to find Serial number.
#/opt/ignite/bin/print_manifest

then i used grep
#/opt/ignite/bin/print_manifest|grep US34072972

still no use.
Be Tomorrow, Today.
praveen..
Super Advisor

Re: How to find machine serial no.

it works,
thanks