- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- HP-UX 11i IA64 install on IBM x380 IA64
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
01-11-2010 06:31 AM
01-11-2010 06:31 AM
HP-UX 11i IA64 install on IBM x380 IA64
Is it possible to install HP-UX 11i IA64 on an IBM IA64 hardware. The hardware is IBM x380 IA64 Server.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-11-2010 06:41 AM
01-11-2010 06:41 AM
Re: HP-UX 11i IA64 install on IBM x380 IA64
I would judge this install as impossible.
HP-UX is designed to run only on HP branded hardware.
Though theoretically possible, such an installation would be unstable at best, dangerous at worst.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-11-2010 06:44 AM
01-11-2010 06:44 AM
Re: HP-UX 11i IA64 install on IBM x380 IA64
HP-UX didn't even run on the Compaq branded IA64 systems that were around a few years ago. It runs on HP Integrity servers only.
The best thing to do with that system is run Linux/IA64 on it - I'd probably suggest the Novell SLES distribution as most appropriate given recent announcments...
HTH
Duncan
I am an HPE Employee

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-11-2010 04:35 PM
01-11-2010 04:35 PM
Re: HP-UX 11i IA64 install on IBM x380 IA64
Certainly, even if HP-UX worked on that HW, it is far from "supported" and I'm not sure if HP even continued "support" for Merced into 11.23 (11iv2) or if that ended with 11.22. I'm quite confident for example, that 11.31 (11iv3) doesn't "do" Merced, which means you wouldn't be running anything "contemporary" as far as HP-UX goes.
You can, as suggested, try running SLES on it. Frankly though, unless you have an historical interest in computers, systems based on Itanium 1 (aka Merced) probably aren't terribly interesting regardless of OS. Certainly, they will give you next to nothing wrt what a contemporary, Itanium2-based system would be like.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-11-2010 08:57 PM
01-11-2010 08:57 PM
Re: HP-UX 11i IA64 install on IBM x380 IA64
No, as you said, it ended with 11.22. We had to give our Merced boxes away to another bean broker. :-)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-12-2010 02:14 AM
01-12-2010 02:14 AM
Re: HP-UX 11i IA64 install on IBM x380 IA64
And while we are the CPU types,
one of the quick ways to check them on
HP-UX is to run "getconf CPU_CHIP_TYPE" command and check the first four digits
of the result.
Here is a snippet from my Perl OAT script for HP-UX:
if ( "$Hardware" eq "ia64" ) {
$CPUCHIP = `getconf CPU_CHIP_TYPE 2>/dev/null`;
chomp($CPUCHIP);
if ( "$CPUCHIP" ) {
$CPUCC = substr($CPUCHIP,0,4);
$CPUCHIPTYPE =
"$CPUCC" eq "" ? "Merced"
: "$CPUCC" eq "5200" ? "McKinley"
: "$CPUCC" eq "5201" ? "Madison, Deerfield, Hondo"
: "$CPUCC" eq "5202" ? "Madison 9M, Fanwood"
: "$CPUCC" eq "5368" ? "Montecito, Millington"
: "$CPUCC" eq "5369" ? "Montvale"
: "Unknown";
}
else {
$CPUCHIPTYPE = "Merced";
}
}
Let's see what Tukwila comes up with soon...
Cheers,
VK2COT