Operating System - HP-UX
1753539 Members
5052 Online
108795 Solutions
New Discussion юеВ

Re: Need to get machine serial no.

 
SOLVED
Go to solution
fizan
Super Advisor

Need to get machine serial no.

team,

like machinfo in rx2600 how to get details in

model
9000/800/rp3410?

Thanks
7 REPLIES 7
Johnson Punniyalingam
Honored Contributor

Re: Need to get machine serial no.

echo "sc product system;info;wait;il" | cstm | grep -i "system serial"
Problems are common to all, but attitude makes the difference
Johnson Punniyalingam
Honored Contributor
Solution

Re: Need to get machine serial no.

# /opt/ignite/bin/print_manifest |grep ├в i ├в serial number├в
Problems are common to all, but attitude makes the difference
johnsonpk
Honored Contributor

Re: Need to get machine serial no.

Hi Fizan,

getconf MACHINE_SERIAL


fizan
Super Advisor

Re: Need to get machine serial no.

Many thanks

to all ..
Jupinder Bedi
Respected Contributor

Re: Need to get machine serial no.

you can check by as follows

/usr/bin/getconf MACHINE_SERIAL
All things excellent are as difficult as they are rare
Arturo Galbiati
Esteemed Contributor

Re: Need to get machine serial no.

Hi all,

getconf MACHINE_SERIAL

getconf CS_MACHINE_SERIAL

echo "sel dev 1;info;wait;il"|/usr/sbin/cstm|grep "System Serial Number"

echo "sel path system;infolog;exit"|/usr/sbin/cstm|grep "System Serial Number"

echo "selclass qualifier system;info;wait;infolog"|/usr/sbin/cstm|grep "System Serial Number"

/usr/bin/getsn

print_manifest | grep -i serial (root)

grep -i SerialNumber /opt/hpservices/etc/motprefs # if you have installed ISEE

HTH,
Art
Sp4admin
Trusted Contributor

Re: Need to get machine serial no.

As stated above. I use the "getconf MACHINE_SERIAL" command to obtain this information. Do a man on "getconf" and check all the diffrernt options.

sp,