Tagged Questions
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.
14
votes
6answers
4k views
activate RTTI in c++
Can anybody tell me how to activate RTTI in c++ when working on unix.
I heard that it can be disabled and enabled.
on my unix environment,how could i check whether RTTI is enabled or disabled?
I am ...
4
votes
2answers
3k views
how to get the command line args passed to a running process on unix/linux systems?
On SunOS there is pargs command that prints the command line aruguments passed to the running process.
Is there is any similar command on other Unix environments?
3
votes
3answers
929 views
Stack unwinding on HP-UX and Linux
I need to get the stack information of my C application in certain points. I've read the documentation and searched the Net but still cannot figure out how I can do it. Can you point to a simple ...
2
votes
1answer
56 views
setvbuf on STDOUT safe for other processes?
I am using HP-UX. I want to disable buffering on stdout to ensure that every line of code is printed in case of core dump with below command:
setvbuf(stdout, NULL, _IONBF, 0); // turn off buffering ...
2
votes
2answers
131 views
sed whole word search and replace
How to replace whole words in string
sed whole word search and replace
with sed in HP-UX (B.11.31)?
$ echo "bar embarassment" | sed "s/bar/no bar/g";
"\bbar\b" does not work
"\<bar\>" does ...
2
votes
3answers
95 views
Simple C code works fine on HPUX but segfaults on Linux. Why?
I have not done any serious C in a long, long time and would appreciate a quick explanation. The following code compiles and runs fine on HP/UX. It compiles without any warning on GCC 4.3.2 in ...
2
votes
2answers
397 views
Java application performs very slow (10-100 times slower than on Windows, Linux, AIX)
I need your help about performance problems running our corporate Java application on HP\UX server. Application is standalone tool which synchronizes data over several data bases into one, ...
2
votes
1answer
373 views
how to get the memory mapping for a core on Linux/HPUX (pmap)
On solaris i can run the pmap command on a core file to get the memory map of a crashed process. Unfortunately the pmap command available on HPUX and Linux doesn't provide this option. Any pointers ...
2
votes
2answers
368 views
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 ...
2
votes
2answers
2k views
HPUX machinfo equivalent for Linux? or What hardware am I using?
In HPUX the command "machinfo" list machine information such as Number of CPUs, Clock speed, Bus speed, processor type, Cache information, total memory, and OS version information.
Is there an ...
1
vote
2answers
91 views
How to extract version from tnsping output in AIX,SUNOS,LINUX and HPUX
I want to fetch 10.2.0.4.0 from tnsping output in AIX, so i wrote tnsping tucson | grep Version | awk '{print $9}' but sometimes in other platforms like LINUX the column varies so I cannot use {print ...
1
vote
2answers
182 views
stty hupcl ixon ixoff
I'm seeing stty, not a typewritter messages on hpux (despite an interactive terminal check?), and am guessing that these are due to the stty lines in my .kshrc file:
case $- in
*i* )
stty hupcl ...
1
vote
0answers
156 views
Not able to compile LibXML in 64 bit HPUX
We were trying to compile the LibXML module for perl in 64 bit HPUX machine.
We ran the .configure like below:
./configure --prefix=/software/opt/HPUX11/ia64/libxml2-2.7.7 --target=ia64-hpux
The ...
1
vote
1answer
146 views
Programatically capture prints from child process at parent so they don't go to stdout
I do have a C++ program that runs on HPUX and Linux. My program creates 2 child process, parent waits for both child process to finish. When I execute my program form run directory as follows,
run> ...
1
vote
2answers
142 views
swlist command to get software installed on different system
When you run swlist with no arguments on an HPUX system you get the packages that are installed on that particular host. I want that same output but instead listing packages that are installed on a ...
1
vote
3answers
94 views
process identification
Let's say i have 15 processes/daemons running in the background.
let's say one of the process has dumped the core.
how could i identify which process has dumped the core.
i am using hpux!
1
vote
3answers
804 views
Why can't I pipe the output of uuencode to mailx in a single Perl open statement?
Here's my code that is not working:
print "To: "; my $to=<>; chomp $to;
print "From: "; my $from=<>; chomp $from;
print "Attach: "; my $attach=<>; chomp $attach;
print "Subject: ...
1
vote
2answers
231 views
Idle tcp file descriptor after failed connect on HPUX
I have a client tcp socket (in c++) that has a loop where it retries to open a socket and connect to a server at a certain interval until it succeeds.
A bug in the program caused close not to be ...
1
vote
1answer
706 views
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 ...
0
votes
0answers
17 views
chuser alternative in HP-UX command to edit /tcb/files/auth/s/someuser [migrated]
is there a command in HP Unix used to change for example min age for password in this file without actually editing the file?
/tcb/files/auth/s/someuser
something just like chuser in aix
it has to ...
0
votes
1answer
13 views
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 / ...
0
votes
1answer
18 views
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..
0
votes
0answers
20 views
Looking for runtime mechanism to identify timeslice or quantum duration
On Linux and HPUX I see that the default timeslice duration, as observed by measuring the average sleep time for a "too small" duration sleep (100-1000 microseconds), has changed from about 10 and 20 ...
0
votes
0answers
81 views
Install/enable php bcmath support on hp-ux web server suite
How to enable php bcmath, gd, mbstring like packages on hp-ux web server suite. I dont want to install a new fresh copy of php as it already there with the web server suite. I am using web server ...
0
votes
1answer
44 views
Sometimes, LD_PRELOAD in HPUX and Solaris cannot take effect
I get some problem about LD_PRELOAD.
When I use LD_PRELOAD in HPUX and Solaris, I found that I cannot attach my open64/open/creat64/creat function in /usr/bin/touch, but my unlink can take effect in ...
0
votes
1answer
25 views
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 ...
0
votes
1answer
37 views
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 ...
0
votes
1answer
41 views
Issue with find command [closed]
I am trying to list all files under different paths which are older than a few days. I am having trouble restricting it to the path specified such that the subdirectories dont pop out.
The command is ...
0
votes
2answers
67 views
Command for swap info in HPUX itanium and HPUX PARISC?
I need to get commands for swap information in HPUX (both Itanium and PARISC) somebody please help.
Thanks
0
votes
0answers
42 views
HP-UX iconv getting different results when linking with pthread
I am attempting to cross compile the HPUX compiler aCC. I have come across an issue where I am using the iconv library and I am seeing different results when I link with the pthread library.
Here is ...
0
votes
1answer
100 views
How do I easily package libraries needed to analyze a core dump (i.e. packcore)
The version of GDB that is available on HPUX has a command called "packcore", which creates a tarball containing the core dump, the executable and all libraries. I've found this extremely useful when ...
0
votes
1answer
87 views
Find files modified within one hour in HP-UX
I'm searching through the manual page for find I can't see a way to run a command which will find all files modified within an hour. I can see only a way to do it for days.
Thanks.
0
votes
1answer
43 views
Test a java class in different OS
I wanted to test my java code in these operating systems-
Solaris,HPUX and AIX. I know they have different methods to test the java code.
How do i do that?Also,should i copy my entire java project in ...
0
votes
2answers
122 views
java one thread slow
I have a J2EE java application which processes SOAP requests. In our production environment (HPUX,OC4J,Java 5) we have about 20 threads running for this process, and we sometimes see 1 thread pausing ...
0
votes
1answer
71 views
gdb, hp ux: getting message Couldn't find virtual table — object may not be constructed yet
in HP UX 11.23 on ia64 , when debugging a particular code segment, i am getting this error
when trying to access a particular object.
I was wondering if anyone faced it, and could help me make sense ...
0
votes
1answer
61 views
How to determine if Python is available in HPUX system?
How can I know if the environment that I am in (some version of HPUX) has python installed?
0
votes
2answers
698 views
Get yesterday date in Unix - KSH script
The below command is used for getting the yerterdays date in Unix Ksh on HP UX
DATE_STAMP=`TZ=CST+24 date +%m/%d/%Y`
Can somebody let me know what does "CST + 24 date " in above command do?
0
votes
1answer
75 views
What is the command to get ospatches and Network conf in HPUX-PARISC?
Some examples in other systems
ospatches in HPUX-IA64 is "swlist -l fileset"
ospatches in Linux is "/sbin/ifconfig -a"
Network Configuration in Linux is "/sbin/ifconfig -a"
I want a equivalent ...
0
votes
3answers
164 views
64-bit program segmentation fault on HP-UX PA RISC
I am using 3 HP-UX PA RISC machines for testing. My binary is failing on one PA RISC machine where as others it working. Note that, even though binary is executed with version check i.e. it just ...
0
votes
2answers
142 views
PA-RISC inline assembly with HP CC compiler [closed]
I need to port some code written with a GCC compiler and inline assembly to its HP Unix equivalent. The situation is that HP CC compiler does not support the _asm keyword and of course the syntax is ...
0
votes
1answer
79 views
adb setting to load libraries from different directories
I have a core file generated on an HP IA64 machine. I have the executable and shared objects related to the core file. I am trying to get the call stack using the adb debugger but the core file was ...
0
votes
1answer
673 views
How can I get the machine information in HP-UX NILA B.11.23
I am using the HP-UX NILA B.11.23 and I would like to know the command which will give below details:
CPU information(number of CPUs,speed of cpus,version of cpus etc.,).
Memory information(main ...
0
votes
1answer
363 views
“Error: /ioerror in --filter--” in converting PDF to print supported format with Ghostscript
I am gonna convert PDF files with Ghostscript in HP-UX system so I can print those files in LX and LQ printers. For LX printers --for example, I use this command:
gs -q -dBATCH -dSAFER -r120x216 ...
0
votes
1answer
153 views
Unsatisfied symbols in Debug but not Release
So I am building something on HPUX. Code works fine in Sun/Linux/AIX.
But on HPUX it complains on
[sshexec] /usr/ccs/bin/ld: Unsatisfied symbols:
[sshexec] globalVar (first referenced in ...
0
votes
1answer
132 views
Is it possible to compile/link to occi with gcc on HPUX?
We have Oracle 11 running on HP-UX 11.31 and gcc 4.4.3. It seems that there is no way to link to occi, because it was built with aCC. Is there any workaround for this?
I had the silly idea that I ...
0
votes
2answers
137 views
Compiling NCURSES src on HPUX
I am trying to compile ncurses-5.7 from source and after running ./configure I get the following error:
configure: error: Your compiler does not appear to recognize prototypes.
You have the ...
0
votes
1answer
106 views
Is there an equivalent to pldd for HP-UX PA-RISC
On Solaris and HP-UX Itanium, pldd $process_id will give the shared objects loaded for that process. AIX has procldd and Linux has pmap that have the same functionality.
Is there an equivalent for ...
0
votes
1answer
1k views
How to extract .depot file on HPUX?
How can I extract extract a .depot file on HPUX?
The .depot file is a tarred dir stucture, with some of the files gzipped under the same name as original.
Note that my environment is quite limited - ...
0
votes
1answer
363 views
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?
0
votes
1answer
276 views
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 funtion.
but we cant find any clue for this.
who is calling ...