Operating System - HP-UX
1826431 Members
3927 Online
109692 Solutions
New Discussion

HP-UX 11i IA64 install on IBM x380 IA64

 
bhupi70
New Member

HP-UX 11i IA64 install on IBM x380 IA64

Hi

Is it possible to install HP-UX 11i IA64 on an IBM IA64 hardware. The hardware is IBM x380 IA64 Server.
5 REPLIES 5
Steven E. Protter
Exalted Contributor

Re: HP-UX 11i IA64 install on IBM x380 IA64

Shalom,

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
Steven E Protter
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com

Re: HP-UX 11i IA64 install on IBM x380 IA64

nope, no way, not possible...

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
Accept or Kudo
rick jones
Honored Contributor

Re: HP-UX 11i IA64 install on IBM x380 IA64

From what I can find online, the IBM x380 was a Merced-based system - that is to say the first generation Intel Itanium processor. Based solely on the images I can find online, it was probably the same Intel "white box" system as the HP x4610. At least at the hardware level. Knuth only knows at the firmware level.

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.
there is no rest for the wicked yet the virtuous have no pillows
Dennis Handly
Acclaimed Contributor

Re: HP-UX 11i IA64 install on IBM x380 IA64

>Rick: I'm not sure if HP even continued "support" for Merced into 11.23

No, as you said, it ended with 11.22. We had to give our Merced boxes away to another bean broker. :-)
VK2COT
Honored Contributor

Re: HP-UX 11i IA64 install on IBM x380 IA64

Hello,


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
VK2COT - Dusan Baljevic