- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Serial Number
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-04-2002 02:29 AM
03-04-2002 02:29 AM
Serial Number
Does anybody know of a command that you can run to find the system serial number?
Thanks in advance,
Colin.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-04-2002 02:31 AM
03-04-2002 02:31 AM
Re: Serial Number
try to run the command:
uname -a
which shows some information about operating system, license and hardware code number.
Allways stay on the bright side of life!
Peter
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-04-2002 02:38 AM
03-04-2002 02:38 AM
Re: Serial Number
If you have a recent system and a quite recent version of STM you can find the system serial number when requesting system information.
Regards
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-04-2002 02:38 AM
03-04-2002 02:38 AM
Re: Serial Number
Thanks for the quick response.
However uname -a does not supply the physical serial number for the machine.
I am able to test this on servers I have physically on-site but am unable to find out the numbers for servers off-site.
Regards,
Colin.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-04-2002 02:50 AM
03-04-2002 02:50 AM
Re: Serial Number
Please refer to:
http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0xd884b47b9a27d6118ff40090279cd0f9,00.html
Rgds, Robin.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-04-2002 02:51 AM
03-04-2002 02:51 AM
Re: Serial Number
This does work for our newer servers but not for our older.
Any other ideas?
Regards,
Colin.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-04-2002 02:51 AM
03-04-2002 02:51 AM
Re: Serial Number
Unless you have kept it ready in some file (manually) , there is now way you can get the serial numbers by issuing command.
You may have to ask some one at off site to look at the serial numbers physically.
-K.Vijay
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-04-2002 02:58 AM
03-04-2002 02:58 AM
Re: Serial Number
For your older systems it is not possible to get the system serial number with some command.
You will have to keep a record for the older systems or have it mention in some file on the system so you can check that file afterwards for the serial number.
Regards,
Wherever I lay my hat is my home......but first I will need to get that hat.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-04-2002 05:27 AM
03-04-2002 05:27 AM
Re: Serial Number
Based on Carlo's first post, you can try it with the following script:
---snip------------------
#!/bin/sh
#
#
#set -x
cstm </dev/null 2>&1
scl type system
info
wait
infolog
saveas
/var/conf/sys.out
done
quit
ok
!
---snip------------------
Then grep 'System Serial' /var/conf/sys.out | awk '{print $4}'
Hope this helps
RGDS, Holger
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-04-2002 06:01 AM
03-04-2002 06:01 AM
Re: Serial Number
The serial number of the chassis is not obtainable from older systems like G/H/I's and K's. And although you can get a serial number for some new systems via the OS, it's not always accurate (especially if the mother board is replaced), therefore it's best to keep those numbers manually.
live free or die
harry
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-04-2002 06:06 AM
03-04-2002 06:06 AM
Re: Serial Number
alternatively, if you have the orginal packing slip that came with the system or a copy of the invoice from your hardware var, the system serial number should be on either of those. You can also trying asking the var if you don't have either of those documents.
HTH
mark
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-04-2002 12:12 PM
03-04-2002 12:12 PM
Re: Serial Number
As already mentioned ... if you have ignite loaded then you could try the print_manifest command which gives complete system information and in some cases the serial number also..
print_manifest | grep -i serial
print_manifest actually grabs information from the manifest.info file under /opt/ignite/data/tutorial (standard installation) and formats it and prints on stdout...
-Shabu