HP-Unix Hardware benchmarking


 
Thread Tools Search this Thread
Operating Systems HP-UX HP-Unix Hardware benchmarking
# 1  
Old 12-11-2006
HP-Unix Hardware benchmarking

Hi everyone,

I'm working on one HP-Unix application which we have to port completely onto Windows xp. Before that I have to compare performance of two different machines. My HP-Unix is running on HP-C8000 workstation and windows XP machine is intel Xeon. Now the problem is to evaluate the performance/benchmark of these two machines interms of OpenGL & CPU performance parameters.

Does anyone here can share there hardware benchmarking experience with me?

I Gone through SPEC.org. , I think it may create problems during compilation.

Is there any other alternatives available for benchmarking?

Please reply .....
Thanks in advance ...

Regards
Devendra
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Unix : hardware to learn

Hello, As many people, i learned Windows & Linux on x86 hardware. But i'd like to learn on my own, Unix. Unlike Linux, it seems impossible to take any hardware and install, on the fly, any Unix OS. So, i'd like to know : how could someone learn by himself Unix ? Share your... (11 Replies)
Discussion started by: XZed
11 Replies

2. HP-UX

Hardware RAID in HP Unix rp3440

Hi Gurus, Can anyone tell me the Hardware RAID configuration in HP Unix rp3440 model server containing HP UX B.11.11 OS version. Thanks in Advance. BR, Prasanth (3 Replies)
Discussion started by: prasanth438
3 Replies

3. Shell Programming and Scripting

Hardware and Software Configuration in UNIX..

Hi, Anybody please let me know the command to find the Hardware and Software components used in any HP-UNIX or Sun Solaris UNIX server ? I need to get all the configuration of the UNIX server. Thanks, Rohit.. (1 Reply)
Discussion started by: ronix007
1 Replies

4. UNIX for Advanced & Expert Users

UNIX distribution for hardware checking

Hello, does anyone knows about any distribution that can make (or provides the tools) all kind of hardware tests? Tests like I/O, CPU execution, RAM, etc... Any kind of "tools" that does this via a Linux Live-CD would be appreciated as well. Thanks a lot. (1 Reply)
Discussion started by: Zarnick
1 Replies

5. UNIX for Advanced & Expert Users

How do I view my hardware specs in my unix machine ?

I am trying to view the hardware specifications through ssh (4 Replies)
Discussion started by: kfir
4 Replies

6. UNIX for Dummies Questions & Answers

Is UNIX hardware sensitive?

Our server at work is a UNIX SCO system. The motherboard in the server went bad, and since the machine (IBM 300GL) is outdated, the PC repair place can't get a part to fix it. They told us that we can have our hard drive (we need to save the data) moved to a new machine, but they are unsure if... (2 Replies)
Discussion started by: needhelp38
2 Replies

7. UNIX for Dummies Questions & Answers

The mini hardware requirment for standard Unix sys.

Hi I am a new comer for Unix sys. My Unix experience just less than half a year. Now Im going to purchase a notebook to install Unix system, but I have no idea of the mini setting for the laptop that are able to run Unix fluently. Is that anyone can tell me? Please give more options or... (1 Reply)
Discussion started by: Julius
1 Replies

8. UNIX for Dummies Questions & Answers

Hardware for UNIX/Free BSD

Hi! I'm planning to start to set up a Webserver. All software has to be freeware. I'm also planning to use Free BSD/UNIX for this project. Apache as Webserversystem and so on... Therefor I would like to have some info about what kind of hardware I need. I'm planning to buy a computer... (9 Replies)
Discussion started by: kargooliw
9 Replies

9. UNIX for Dummies Questions & Answers

UNIX Hardware Recommendations pls

Hello, I'm a Computer Engineering student at Portland State University and am seriously trying to broaden my horizons in UNIX. My goal is to eventually become an excellent sys admin, but alas...I'm just starting off on this path. I am relatively new (though not unexposed) to UNIX and... (2 Replies)
Discussion started by: Cyron5
2 Replies
Login or Register to Ask a Question
xpamethod(7)							SAORD Documentation						      xpamethod(7)

NAME
XPAMethod - XPA Communication Methods SYNOPSIS
XPA supports both inet and unix (local) socket communication. DESCRIPTION
XPA uses sockets for communication between processes. It supports three methods of socket communication: inet, localhost, and unix. In gen- eral, the same method should be employed for all XPA processes in a session and the global environment variable XPA_METHOD should be used to set up the desired method. By default, the preferred method is "inet", which is appropriate for most users. You can set up a different method by typing something like: setenv XPA_METHOD local # unix csh XPA_METHOD=local; export XPA_METHOD # unix sh, bash, windows/cygwin set XPA_METHOD=localhost # dos/windows The options for XPA_METHOD are: inet, unix (or local), and localhost. On Unix machines, this environment setup command can be placed in your shell init file (.cshrc, .profile, .bashrc, etc.) On Windows platforms, it can be placed in your AUTOEXEC.BAT file (I think!). By default, inet sockets are used by XPA. These are the standard Internet sockets that are used by programs such as Netscape, ftp. etc. Inet sockets utilize the IP address of the given machine and a (usually random) port number to communicate between processes on the same machine or between different machines on the Internet. (Note that XPA has an Access Control mechanism to prevent unauthorized access of XPA access points by other computers on the Net). For users connected to the Internet, this usually is the appropriate communication method. For more information about setting up XPA communication between machines, see Communication Between Machines. In you are using XPA on a machine without an Internet connection, then inet sockets are not appropriate. In fact, an XPA process often will hang for many seconds while waiting for a response from the Domain Name Service (DNS) when using inet sockets. Instead of inet sockets, users on Unix platforms can also use unix sockets (also known as local sockets). These sockets are based on the local file system and do not make use of the DNS. They generally are considered to be faster than inet sockets, but they are not implemented under Windows. Use local sockets as a first resort if you are on a Unix machine that is not connected to the Internet. Users not connected to the Internet also can use localhost sockets. These are also inet-type sockets but the IP address used for the local machine is the localhost address, 0x7F000001, instead of the real IP of the machine. Depending on how sockets are set up for a given plat- form, communication with the DNS usually is not required in this case (though of course, XPA cannot interact with other machines). The localhost method will generally work on both Unix and Windows platforms, but whether the DNS is required or not is subject to individual configurations. A final warning/reminder: if your XPA-enabled server hangs at startup time and your XPA_METHOD is inet, the problem probably is related to an incorrect Internet configuration. This can be confirmed by using the unix method or (usually) the localhost method. You can use these alternate methods if other hosts do not need access to the XPA server. SEE ALSO
See xpa(7) for a list of XPA help pages version 2.1.14 June 7, 2012 xpamethod(7)