0
votes
1answer
183 views

Is there any AIX/Win equivalent command to Solaris pmap?

I am working on memory management in different OS like AIX, Win and Unix. The pmap command works fine for Solaris but I can't able to find the similar command for AIX. Is pmap works in AIX or is ...
1
vote
1answer
137 views

DBX: AIX equivalents of the Solaris version

I'm a developer who mostly programs in a solaris environment, though our code is compiled on multiple platforms, including AIX. The most stable debugging tool I have access to on both environments is ...
0
votes
2answers
268 views

How to collect directory listing along with each file CRC checksum?

I use the following command to get dir listing in nix(Linux, AIX, Sunos, HPUX) platforms Command ls -latr Ouput drwxr-xr-x 2 ricky support 4096 Aug 29 11:59 lib -rwxrwxrwx 1 ricky support ...
0
votes
0answers
116 views

netstat -an Output-Send Buffer Getting increases

we have seen that Send Buffer geting increases (netstat -an output) & There are lot of Retranamissions in the tcpdump. In that case Problem in that Application side is that Data Writen from the ...
0
votes
0answers
26 views

Any Memory clustered DB like solution for Solaris and AIX?

Hi I am wondering for any suggestions. I am looking for some kind of Memory typed DB that is clustered as well ( perfect example will be Membase(couchbase) ) I can see that compiling membase or ...
-2
votes
2answers
1k views

ps command output on AIX, HPUX and Solaris

I am writing a portable shell script to get system process information, I need process id, command, pwdx (linux). On linux I am able to get this information as follows.. but it fails on all other unix ...
0
votes
2answers
378 views

How to create static binaries (not linked, portable) of GNU find for Solaris 8,9,10 and AIX

We (my team) is searching for the proper method to compile the GNU find command as a static (not dynamically linked), portable binary (that I can copy from one system to another), for Solaris 8, 9 and ...
0
votes
1answer
78 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 ...
1
vote
2answers
412 views

Need to move Java applications form Solaris 10 to AIX. Is there is Oracle or OpenJDK available for AIX platform?

We need to move many Java applications that is build with Sun JDK runs on sun JRE in Solaris 10 to AIX. We are concerned about the applicaion working the same on IBM J9 JRE. Is there any Oracle or ...
0
votes
3answers
572 views

How to obtain cache line size on commercial UNIX OSes from a C/C++ program?

It is easy enough to find the answer for Windows, Linux and OSX on the web, but how about on commercial UNIX operating systems like AIX (on POWER), HP-UX (on Itanium) and Solaris (on SPARC). ...
0
votes
5answers
353 views

AIX 5.3 vs Solaris 5.10 - C strcat implementation

Does anyone have any idea of why this could happen? I have a C program in AIX 5.3, I've been asked to run it on a SPARC Solaris 10 machine, but when I did it, I noticed there was a buffer overflow ...
0
votes
1answer
1k views

PS command to get memory, user, process info on IBM AIX and SunOS Solaris

I am looking for best PS command to get as much info as possible, mainly memory info like SZ, RSS with userid, pid, complete command/process. I have two servers IBM AIX and SunOS solaris. I am OK to ...
1
vote
2answers
152 views

Trying to test space in filesystem on Unix

I need to check if I Filesystem exists, and if it does exist there is 300 MB of space in it. What I have so far: if [ "$(df -m /opt/IBM | grep -vE '^Filesystem' | awk '{print ($3)}')" < "300" ] ...
5
votes
7answers
10k views

Unix: fast 'remove directory' for cleaning up daily builds

Is there a faster way to remove a directory then simply submitting rm -r -f *directory* ? I am asking this because our daily cross-platform builds are really huge (e.g. 4GB per build). So the ...
0
votes
2answers
864 views

Get the path of link that it points to?

Is it possible to get the abolute path of the link that it is pointing to? Is there any simple system command? I need for all of the following OS HP-UX 11i, 1123u, 1123i AIX 5.2 and 5.3 Suse Linux ...
2
votes
4answers
644 views

REDUX: How to overcome an incompatibility between the ksh on Linux vs. that installed on AIX/Solaris/HPUX?

I have uncovered another problem in the effort that we are making to port several hundreds of ksh scripts from AIX, Solaris and HPUX to Linux. See here for the previous problem. This code: ...
3
votes
8answers
8k views

How to overcome an incompatibility between the ksh on Linux vs. that installed on AIX/Solaris/HPUX?

I am involved in the process of porting a system containing several hundreds of ksh scripts from AIX, Solaris and HPUX to Linux. I have come across the following difference in the way ksh behaves on ...