Questions tagged [hp-ux]

HP-UX (Hewlett-Packard UniX) is Hewlett-Packard's proprietary implementation of the Unix operating system, based on UNIX System V (initially System III) and first released in 1984.

HP-UX (Hewlett-Packard UniX) is Hewlett-Packard's proprietary implementation of the Unix operating system, based on UNIX System V (initially System III) and first released in 1984.

Resources

368 questions
2
votes
1 answer

What is the difference between a .sl and a .so on HPUX?

Since you can link your application to a .sl file and a .so file what exactly are the differences between .so and .sl files?
ojblass
  • 21,146
  • 22
  • 83
  • 132
2
votes
3 answers

sed command that works for Solaris, Linux and HPUX

I need to change a directive in a config file and got it working in Linux but in Solaris, it says command garbled. Here is the directive enable-cache passwd yes I need to simply change the yes to no. How can I do with with…
user1967720
  • 155
  • 1
  • 2
  • 7
2
votes
2 answers

Why does "git fetch" fail on HTTPS URLs with "Function is not available" on HP-UX?

When I run git fetch I get the following: $ git fetch Password for 'xxx': error: cannot create thread: Function is not available fatal: cannot start thread to parse advertised refs $
Randy Proctor
  • 7,396
  • 3
  • 25
  • 26
2
votes
1 answer

How to make find return the target of a symbolic link in hpux?

I want to execute the find command but I want it to return the target instead of the symbolic link itselft. Is that possible to do in HP-UX? For example, with: security -> /dev/vg_irp_ist/rlv_IRP1_security I want to return…
aF.
  • 64,980
  • 43
  • 135
  • 198
2
votes
2 answers

Static/global constructors on GCC 4.1 / HP-UX 11.23

Quick summary: Lots of existing code that works fine on numerous platforms under gcc 4.1, aCC, VisualAge, and MSVC. I am working on getting this up to snuff on HP-UX currently. The output consists of multiple (8-10) shared libraries. Everything…
phrakture
  • 21
  • 2
2
votes
1 answer

Cannot execute SELECT MAX(ORA_ROWSCN) from Embedded SQL

Environment : HP-UX 11.x C++ (ProC & aCC compiler) Oracle 10g ) I am unable to execute the following command from my C++ Embedded SQL code EXEC SQL SELECT MAX(ORA_ROWSCN) INTO :scn_timestamp FROM table_name ; The changes i'm making are to an…
2
votes
2 answers

How can I check the internal attributes of shared objects?

When using HP-UX I can use the chatr utility to report on various internal attributes of a shared library. It will also allow me to modify the internal attributes of shared libraries that I have built. The chatr utility can report, and in some cases…
Rob Wells
  • 36,220
  • 13
  • 81
  • 146
2
votes
1 answer

What are the incompatibilities for ESQL/C programs while migrating from HP-UX to Red Hat Linux?

I am migrating a project and we need to migrate ESQL/C source files from HP-UX to Red Hat Linux. What may be the incompatibilities while moving these ESQL/C files to Linux?
user1716079
  • 69
  • 1
  • 1
  • 9
2
votes
3 answers

Unlock a user object in HPUX LDAP Directory Server

I am accessing the HP UX directory server through my java code, for reset & unlock a locked out user account in the Directory server. Here is my code for user account password…
Arun
  • 55
  • 2
  • 9
2
votes
2 answers

How to set Java program memory limit on HP-UX (-Xmx doesn't work!)?

In our scenario, we launch 20+ java processes to deal with our business, we find each process eats 500M+ memory, so we consumed several G memory on the server in total, the customer complains their server become slowly once launch our processes. I…
chenmin
  • 131
  • 1
  • 7
2
votes
2 answers

How to determine amount of available storage space on a blank DVD in bash?

I was wondering if there was a way to determine the amount of space available in a blank writable DVD using a bash command.
Justin
  • 742
  • 5
  • 17
  • 34
2
votes
2 answers

What could cause return values to differ between HP-UX and LINUX for C++ application?

In the process of porting an HP-UX C++ application over to LINUX, I've noticed that there was a function of type int where not all code paths appear to return an integer value. When I compile and run the application under HP-UX (using the acc…
Justin
  • 742
  • 5
  • 17
  • 34
2
votes
1 answer

Does the GCC compiler support classic C++?

This question is related to the process of porting over an HP-UX executable. On HP-UX, the executable was compiled and linked using the HP-UX ACC Compiler. Given that the compiler was from way back in 1996, it doesn't appear that it supports…
Justin
  • 742
  • 5
  • 17
  • 34
2
votes
1 answer

Have any method make HP-UX 11.31(IA64) support 64-bit time_t

I'm be surprised to learn type long and time_t are 4-byte sized in this HP-UX 11.31(IA64). May I ask why? My environment: $ uname -a HP-UX bdev1 B.11.31 U ia64 0999202893 unlimited-user license $ cat /usr/include/sys/_time_t.h ...... # ifndef…
van
  • 213
  • 1
  • 3
  • 10
1
vote
1 answer

How to measure the exact performance (time taken to execute) of a binary which is taking input from user

I have a C program written in such a way that it takes a file name as input to read. Now the problem is i am using time/timex command on HPUX to know the exact performance or time elapsed during the complete execution of the program. The problem is,…
Goldi
  • 41
  • 1
  • 5