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
0
votes
2 answers

Arrays for ksh and bash

I am writing a script to work both in bash and ksh. I have the following code if [ -e /bin/ksh ]; then set -A arrayexample a b c else arrayexample=('a' 'b' 'c') fi I have the following error message when I run it in ksh: Syntax error…
Mansuro
  • 4,558
  • 4
  • 36
  • 76
0
votes
1 answer

XMLStarlet Installation on HP-UX

I am not able to install XMLStarlet 1.4.2 or 1.5.0 on HP-UX. When I run the ./configure script it gives the following error ./configure[459]: sed: not found. ./configure[471]: expr: not found. ./configure[474]: sed: not found. ./configure[478]:…
Techie
  • 25
  • 5
0
votes
0 answers

What is the command in HP-UX to obtain environment variables for a process?

I want to know the environment for a process on HP-UX. I am not finding a /proc/--pid--/environ directory on my machine. I am looking for something on HP-UX that is similar to "/bin/ps e -p" on Linux.
chello
  • 155
  • 5
0
votes
3 answers

Socket doesn't receive complete data on HPUX

I really don't understand what is going wrong here, so I hope somebody may spot something I missed. I'm writing a user daemon which is accepting a client that I develop in java. For now this client only connects and sends the username password. I…
Devolus
  • 21,661
  • 13
  • 66
  • 113
0
votes
1 answer

Creating my own implementation of DBI::Iterator in perl

UPDATE: Right now I am trying to take in to an array around 120M of rows. Reason I'm not doing this over UTL_file is because in our production server it requires oracle user access to write and move the written flat-file into our desired directory.…
0
votes
2 answers

pro*C keyword "Execute" not recognized

I am using HP-UX aCC compiler [HP C/aC++ B3910B A.06.26] to compile an old C/Pro*C application (already compiled with an older version of aCC compiler). The compilation is always failing with the below error Pro*C/C++: Release 10.2.0.4.0 -…
jamel
  • 303
  • 2
  • 7
  • 16
0
votes
0 answers

ld: Mismatched ABI (not an ELF file) cannot compile

i have simple C hello world program and i wanted to compile it on HP-UX ia64 11.31,but i get the following error /* Hello World program */ #include main() { printf("Hello World"); } cc -v +DD64…
anjalis
  • 397
  • 2
  • 19
0
votes
0 answers

Python build error on HPUX

I am trying to build both Python 2.7.4 and Python 3.3.1 on HPUX 11.31 Itanium with gcc 4.7.0. For both projects, I am getting the same build error: make ... running build scripts ... /bin/sh[5]: 26906 Abort (coredump) make: *** [sharedmods] Error…
Cliff
  • 1,621
  • 1
  • 13
  • 22
0
votes
1 answer

[unixODBC][Driver Manager]Invalid cursor state on HP -UX

I am using open source ODBC driver manager with our driver and i am getting this error 24000(0)[unixODBC][Driver Manager]Invalid cursor state I tried to debug in my driver but no help there. Please can you explain me is this error is coming from…
Vivek Gaur
  • 4,579
  • 3
  • 17
  • 17
0
votes
1 answer

Common Issue: Table to be displayed in mail content and not as an attachment

The requirement is to send a report from an UNIX server. I have a list of data to be shown on the report, let's say from database. I am using sendexchange to send mail. It always sends in plain text format, and the data isn't displayed with proper…
C0de_Hard
  • 72
  • 1
  • 9
0
votes
1 answer

HPUX Not allowed to create logical volumes larger than 2TB

I have 40TB logical volume on HPUX but even after I installed the patch(PHCO_37939) as suggested in this link http://h30499.www3.hp.com/t5/LVM-and-VxVM/Not-allowed-to-create-logical-volumes-larger-than-2TB/td-p/4834031 I still see it as 2TB. Any…
Lyrk
  • 1,936
  • 4
  • 26
  • 48
0
votes
1 answer

Shell Script to for remote copy and then processing the file

The below script works fine. But when I try to add a command to remote copy and then assign the variable FILENAME with the file received from the remote copy, the while loop doesn't work. I am quite new to scripting so I'm not able to find out what…
0
votes
1 answer

executable failing in malloc_y function

We are trying to port our application from HP machine to AIX machine. It was running fine on HP machine but now its failing in malloc_y function. but we cant find any clue for this. who is calling this malloc_y function?
Hemant
  • 3,893
  • 6
  • 27
  • 22
0
votes
1 answer

Eval (java) not working when path contains escaped whitespaces in HP-UX

I have a simple script as follows: #!/bin/ksh JAVA_SRC="/home/myuser/Setup\ Files/jre/bin/java" eval $JAVA_SRC When I run this on HP-UX, I get this error: $ spacetest.sh /home/myuser/Setup^BFiles/jre/bin/java: not found It seems like the shell…
Dan
  • 1,763
  • 4
  • 26
  • 40
0
votes
2 answers

Compilation error in C: Inconsistent type declaration/Illegal redeclaration for identifier

I am getting the following error while compiling my source code: Compiling lib/netapi/joindomain.c cc: "include/smb_ldap.h", line 33: error 1584: Inconsistent type declaration: "ber_tag_t". cc: "include/smb_ldap.h", line 34: error 1713: Illegal…
Vinod Yadav
  • 359
  • 1
  • 5
  • 13