- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- OS version
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
02-25-2013 03:45 AM
02-25-2013 03:45 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-25-2013 04:01 AM
02-25-2013 04:01 AM
Re: OS version
If you know that the version is B.11.11, you already know the version!
If you want to know the silly marketing names, then:
- B.11.11 = 11iv1 (originally just "11i")
- B.11.23 = 11iv2
- B.11.31 = 11iv3
The command "uname -r" will display the OS version.
"swlist -l bundle HPUX11i-OE" will display the OE version number, whose last digits indicate release year and month.
For example:
# swlist -l bundle HPUX11i-OE # Initializing... # Contacting target "xx"... # # Target: xx:/ # HPUX11i-OE B.11.11.0406 HP-UX 11i Operating Environment Component
This would be a HP-UX 11i v1 system, using a June 2004 release (.0406).
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-25-2013 04:46 AM - edited 02-25-2013 04:47 AM
02-25-2013 04:46 AM - edited 02-25-2013 04:47 AM
Re: OS version
Hello Matti,
Thank you for your reply.
I tried the command on 2 differents machines but I received error messages.
# swlist -l bundle HPUX11i-OE # Initializing... # Contacting target "xx"... # # ERROR: Software "HPUXi-OE" was not found on host :xx:/". #
This is the exact data I need.
Actually, the issue is that I found differences between the shells that running on 2 machines.
That cause some problem, untill I copied the updated shells from the updated machine.
The porpose is to figure out if this was the problem.
BR,
Yali
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-25-2013 07:21 AM - edited 02-25-2013 08:00 AM
02-25-2013 07:21 AM - edited 02-25-2013 08:00 AM
Re: OS version
>> ERROR: Software "HPUXi-OE" was not found on host :xx:/".
Looks like a typo, you forgot "11".
Hope this helps!
Regards
Torsten.
__________________________________________________
There are only 10 types of people in the world -
those who understand binary, and those who don't.
__________________________________________________
No support by private messages. Please ask the forum!
If you feel this was helpful please click the KUDOS! thumb below!

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-25-2013 07:52 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-25-2013 11:39 AM
02-25-2013 11:39 AM
Re: OS version
># swlist -l bundle | grep HPUX11i
You can also use swlist's pattern matching:
swlist -l bundle "*HPUX11i*"
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-25-2013 11:07 PM
02-25-2013 11:07 PM
Re: OS version
Thank you all!