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
1
vote
2 answers

How to reset the user password in RedHat Directory server using Java code via LDAPS?

How can I access the RedHat directory server / HP UX Directory server using LDAPS from my Java application? I am trying to access it through LDAP it's working fine but while using LDAPS it doesn't establishing the connection with the server. Here is…
Arun
  • 55
  • 2
  • 9
1
vote
1 answer

Purify: Error: Ran out of thread local data space in purify

I am running purify 7.0 on Hp-UX 11.11B with aCC 3.85.I set the environt variable as below: export PURIFYOPTIONS="-max_threads=4000 -enable-thread-stack-change=yes" But still I am getting the below error and the purify comes to an halt with the…
1
vote
1 answer

Wrapper link options for HPUX Itanium

With PA-RISC version linker provides the +afs flag to alias function symbols and GCC provides the -wrap option. I am looking for a similar wrapper hook methodology to for HPUX 11iv3 Itanium. Any recommendation
Alan Ennen
  • 31
  • 5
1
vote
1 answer

Dynamic changes to thread stack size in Solaris 9?

I am looking for a configurable / tunable on Solaris 9 through which I can change the default thread stack size without recompiling the code to use "pthread_attr_setstacksize" For example on HPUX 11.11 / 11.23 the environment variable…
Satya
1
vote
3 answers

What does the -x and -c string comparison options do?

I'm in the process of porting over another shell script when I came across the following: if [[ ! -x $DVDREC ]]; then print "ERROR: $DVDREC not found. Exiting ..." exit 1 fi if [[ ! -c ${DVDDEV} ]]; then print "ERROR: ${DVDDEV} not found.…
Justin
  • 742
  • 5
  • 17
  • 34
1
vote
1 answer

How to create an echo device in Linux?

I'm working on porting this bash script over to Linux from HP-UX. There appears to be a command remsh opcfdp01 "find ${TOOLS_DIR} -user ${ADMIN_USER} -exec chmod a+rwx {} \;" < /dev/echo > /dev/null 2>&1 The device file /dev/echo appears to…
Justin
  • 742
  • 5
  • 17
  • 34
1
vote
3 answers

Equivalent for typeset -l and typeset -u in LINUX bash?

I'm in the process of porting over a script from HP-UX to LINUX. When I try to source the script, bash complains that bash: typeset: -u: invalid option typeset: usage: typeset [-afFirtx] [-p] name[=value] ... typeset: usage: typeset [-afFirtx]…
Justin
  • 742
  • 5
  • 17
  • 34
1
vote
1 answer

HP-UX and RHEL ping difference

I have these two commands for different environments.. for HP-UX: "ping someaddress 10" for RHEL: "ping someaddress -c 10" Im Porting an application from HP-UX to RHEL and i cant tell if these two commands have same results since, I dont have a…
charmae
  • 1,080
  • 14
  • 38
1
vote
1 answer

Java2D and ThinClients - Performance issue

I have a Swing Application which is run (among other environments) on HPUX Blades and displayed on ThinClients. Unfortunately, we developed on Windows boxes. With the Blade/ThinClient setup, we have severe performance issues, which I believe might…
Mike Adler
  • 1,199
  • 9
  • 24
0
votes
1 answer

HP-UX C/aC++ compiler bug with using-statements for pure virtual methods

I'm trying to build this legitimate C++ code in HP-UX 11.11, using HP C/aC++ compiler version A.03.85: class BaseClass { public: virtual int sum(int i) = 0; }; class Derived : public BaseClass { public: using BaseClass::sum; virtual int…
0
votes
1 answer

Secure FTP from HP-UX to remote FTP server

I have a secure FTP server I need to connect to from a HP-UX box. This will be via a script. An attempt from the HP-UX box using the terminal fails because it is not a SFTP connection. If I fire up a browser from another box & type in…
user577651
  • 93
  • 1
  • 2
  • 8
0
votes
1 answer

HP UX: how to use -or -and operators in find() function

I'm trying to to get a list of files with find() on HP UX LD_PRELOAD = "`find ./lib/ -type f \( -name \*boo\* -or -name \*foo\* -and -not -name \*zoo\* \)`" and HP UX console tells me that -or / -and / -not operators are bad. meanwhile this stuff…
Alexander.Iljushkin
  • 4,519
  • 7
  • 29
  • 46
0
votes
1 answer

List files modified on a particular date in hp unix

How to list the files modified on 24th dec in a folder in hp unix. I have a folder containing huge number of files, I just want to filter files modified on a particular date. Say december 15th..
Abdul Kader
  • 5,781
  • 4
  • 22
  • 40
0
votes
1 answer

How to verify cross platform installation steps

I have to check installation steps of my application on different production machines. I want to check how can I install my application on HP UX. I have only linux/windows machines but dont have real physical HP unix machine. Is there any way i can…
R. Rahul
  • 1,166
  • 3
  • 16
  • 40
0
votes
1 answer

select call gets timeout on HPUX ia64

I have used select call in my prog and it works on most of unix flavors. However, It works on one HPUX ia64 box but another it timeout immediately. After several re-builds, I understood that i have set tv_sec but not set tv_usec of timeval…
Sach
  • 659
  • 8
  • 20