- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- need information.
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
08-25-2005 05:12 PM
08-25-2005 05:12 PM
need information.
"isalist" - display the native instruction sets executable on Solaris.
i want to know which command on HP-UX gives same.
Thanks in Advance.
Mallappa Y
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-25-2005 05:25 PM
08-25-2005 05:25 PM
Re: need information.
uname -a
For more info look for man pages for uname
IA
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-25-2005 05:44 PM
08-25-2005 05:44 PM
Re: need information.
but "isalist" on Solaris gives
bash-2.03$ isalist
sparcv9+vis sparcv9 sparcv8plus+vis sparcv8plus sparcv8 sparcv8-fsmuld sparcv7 sparc
But on HP-UX it give command not found.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-25-2005 05:51 PM
08-25-2005 05:51 PM
Re: need information.
To view whether or not a system is PA-RISC or ITANIUM based, look at the physical machine model number using model command (model prints the machine hardware model).
If it starts with rx, it is ITANIUM.
If it starts with rp or is one of the older D,R,K,N boxes, it is PA-RISC
You can also info from /usr/sam/lib/mo/sched.models file.
getconf KERNEL_BITS ---- will give you 32/64 info.
Then you can find out if it supports PA-RISC 32-bit instruction set or 64-bit
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-25-2005 06:02 PM
08-25-2005 06:02 PM
Re: need information.
Example:
#model
9000/800/L2000
#strings /usr/sam/lib/mo/sched.models|grep L2000
L2000-36 2.0 PA8500
L2000-44 2.0 PA8500
L2000-5X 2.0 PA8600
L2000-8X 2.0 PA8700
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-25-2005 06:30 PM
08-25-2005 06:30 PM
Re: need information.
arch -k gives you "display the architecture of the current host" On Solaris.
I need the command which "display the native instruction sets executable on HP-UX"
Thanks,
MTY.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-26-2005 06:56 AM
08-26-2005 06:56 AM
Re: need information.
HPUX can be Itanium or PA-RISC, you can find this out by typing things like ... uname -a
Where Solaris (as you posted) uses bash, HPUX has the Posix shell (the default kernel shell) and can also use KORN, Bourne, C (aka California) shells. To get a full list of what is on the box just type ... swlist
The terminology is different, and you will find that commands you use in Solaris may not have a full-fledged equivalents on HPUX (and visa-versa).
Hope this helped at least a little,
Rgrds,
Rita
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-26-2005 07:33 AM
08-26-2005 07:33 AM
Re: need information.
You might want to give this a look. not sure if you will find what you are looking for, but I have found it useful.
http://www.sun-microsystems.org/Tutorials/rosetta/rosetta.html
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-26-2005 07:41 AM
08-26-2005 07:41 AM
Re: need information.
Regards
Torsten
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
08-29-2005 05:41 AM
08-29-2005 05:41 AM
Re: need information.
want. To determine the native ISA on an
HP-UX machine, use the model and uname
commands as described by the other posters,
or use "getconf CPU_VERSION" and decode the
value using /usr/include/sys/unistd.h. Once
you figure out if machine is PA1.0, PA1.1,
PA2.0 or IA64, it is easy to figure out what
ISAs the machine supports: a PA1.0 machine
only supports PA1.0, a PA1.1 machine supports
PA1.0 and PA1.1, and so on.
IHYAP