Tagged Questions

AIX (Advanced Interactive eXecutive, pronounced "a i ex") is a series of proprietary Unix operating systems developed and sold by IBM for several of its computer platforms.

learn more… | top users | synonyms

25
votes
7answers
24k views

How to mkdir only if a dir does not already exist?

I am writing a script to run under the korn shell on AIX. I'd like to use the mkdir command to create a directory. But the directory may already exist, in which case I don't want to do anything. So I ...
10
votes
3answers
19k views

Remote debugging with Eclipse CDT

We're using the Eclipse CDT 5 C++ IDE on Windows to develop a C++ application on a remote AIX host. Eclipse CDT has the ability to perform remote debugging using gdbserver. Unfortunately, gdbserver ...
8
votes
2answers
53 views

Using ofstream on AIX

I am trying to write a simple C++ program on an AIX Box. The program is given below: # include <iostream> # include <fstream> using namespace std ; int main() { ofstream of ; ...
8
votes
4answers
8k views

How to runtime debug shared libraries?

Can anyone tell me how to do runtime debugging on shared libraries? I need to runtime-debug a function in my shared library, but its called by another program. How can I do something like dbx with ...
7
votes
2answers
116 views

Handling null pointers on AIX with GCC C

We have a code written in C that sometimes doesn’t handle zero pointers very well. The code was originally written on Solaris and such pointers cause a segmentation fault. Not ideal but better than ...
7
votes
5answers
365 views

Why this warning from IBM XL C/C++ compiler?

Here's a minimum code example that illustrates the problem: #include <iostream> class Thing { // Non-copyable Thing(const Thing&); Thing& operator=(const Thing&); int ...
6
votes
1answer
225 views

sequentially executing background processes unix

I have two scripts say 'S1' and 'S2'. I execute these scripts as, nohup S1 & nohup S2 & But I would like them to execute sequentially. ie., S2 should execute only on successful ...
6
votes
7answers
5k views

Running UNIX commands as different user, from Java

Trying to write a Java program capable of running a UNIX command as a different UNIX user. I have the user's password, and I know the command I want to run, but the command has to be run as that user ...
4
votes
1answer
177 views

Why is compiling this code producing an error?

I believe this is the right header: #include <cstdio> Note, there is a difference between the above declaration and this one: #include <stdio.h> The first one puts everything in ...
4
votes
2answers
99 views

128 bit comparison under AIX (64 bits) for sorting hash values

I need to sort an array of structures like this one under AIX (64 bits) using the xlC_r compiler: struct digest_line { uint64_t first; uint64_t second; }; Right now I'm doing the long way ...
4
votes
1answer
243 views

fgetc does not identify EOF

Below program runs fine on solaris/linux various flavor, but not on AIX. on AIX while(c!=EOF) if i replace by while(c!=0xff) it just run fine completely Any thought ? i checked the man page ...
4
votes
2answers
510 views

Compile C++ code for AIX on Ubuntu?

Question in one sentence: How can I compile code for AIX using G++ on Ubuntu? (Assuming it is possible) I hope that it is as simple as adding an option to the make file to specify target processor. ...
4
votes
1answer
1k views

AIX 5.3 (ld-xlc) equivalent option Linux (ld-gcc) -rpath

My compiler:xlc version 10.1 Environment: AIX5.3 Linker: ld When i work on Linux , with gcc (4.4.1) i use the following option -Wl,-rpath (-Wl for the linker options) it adds a directory to the ...
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?
4
votes
6answers
5k views

What is the unix command to see how much disk space there is and how much is remaining?

I'm looking for the equivalent of right clicking on the drive in windows and seeing the disk space used and remaining info.
4
votes
3answers
12k views

AIX: IBM Java: java.net.SocketException: Connection timed out:could be due to invalid address

We have seen the following exceptions very frequently on IBM AIX when attempting to make an SSL connection to our server: java.net.SocketException: Socket closed at ...
4
votes
2answers
1k views

Crash when calling into C++ library from Perl using SWIG (AIX 5.1)

I'm trying to call into a C++ library from Perl on an AIX 5.1 machine. I've created a very simple test project to try to exercise this. My C++ shared library (test.cpp): #include <stdio.h> ...
3
votes
0answers
69 views

Java System.loadLibrary(“m”) fails on AIX 6.1

On AIX 6.1 ppc64, in order to load libm.a, our application uses the System.loadLibrary("m"). Or it fails with an error message the module has invalid magic number According to IBM documentation, ...
3
votes
1answer
125 views

Compilation error on AIX 6.1 - Undefined symbol: .__gcc_qsub

I am running AIX 6.1, and GCC 4.2 and when I try compile SQLite (I think version 3.7.5) using the following commands: gcc -maix64 -D_FILE_OFFSET_BITS=64 -c -fPIC -DHAVE_USLEEP ./sqlite/sqlite3.c -o ...
3
votes
2answers
184 views

how to implement an atomic assignment on AIX/powerpc?

I'm porting a kernel extentsion to 32/64 bit AIX on multi-processor PowerPC, written in C. I don't need more than atomic read operation and atomic write operations (I have no use for fetch-and-add, ...
3
votes
1answer
248 views

Get full path of executable on AIX

This is most similar to Get full path of executable of running process on HPUX…, except for AIX. The basic question is: how, on AIX, can I determine the full path to the current executable? Having ...
3
votes
1answer
95 views

Java File Corruption issue

I have a java application which is doing a lot of file operations. For each file processing (task) I will open one log4j file for writing the task log. In each task I am opening one file and doing ...
3
votes
5answers
1k views

Unix cp argument list too long

I am using AIX. When I try to copy all the file in a folder to another folder with the following command: cp ./00012524/*.PDF ./dummy01 The shell complains: ksh: /usr/bin/cp: 0403-027 The ...
3
votes
6answers
4k 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 ...
3
votes
3answers
2k views

Python on AIX: What are my options?

I need to make some Python applications for a work project. The target platform is AIX 5.3. My question is: What version of Python should I be using? My requirements are: The Python version must ...
3
votes
2answers
787 views

Conditional sections in AIX Makefiles

How do I make a makefile that works on AIX, Linux and SunOS and has the ability to provide different compiler options for each environment? I have access to an environment variable which describes ...
3
votes
5answers
2k views

AIX deployment : installp or rpm?

I am deploying a large set of perl/shell/sql code on AIX. these could be (and are) different applications with their own dev teams, source control repos, etc. I am lazy and want to make ...
2
votes
1answer
69 views

Programatic memory monitoring in AIX

Can anyone advise of AIX system calls that can be used to programatically check memory usage? I'm working with a large multithreaded C++ app which is currently running out of memory (using 32 bit, ...
2
votes
1answer
49 views

AIX diff -b broken?

I'm trying to compare files ignoring carriage returns - which diff -b on any other unix performs admirably. But on this AIX 5.3 box: tst1:tst2$ od -c testfile 0000000 t h i s \r \n f ...
2
votes
3answers
156 views

How to debug segmentation fault of g++?

I tried to compile the code using g++4.4.6 on aix 6.1. I dont have gdb installed. After compilation, It is showing Segmentation Fault error:- ../test/Corner.h: In member function 'void ...
2
votes
0answers
84 views

Porting Motif, From AIX to RHEL 6.1

This is my question here, but it seemed a better place then on motifzone -- their last post was over a year ago. I am tasked with porting a ~150k line application from AIX 5.3L to RHEL 6.1 I am ...
2
votes
1answer
151 views

make fails for gcc compiled Perl V5.8.8 on AIX 6.1

I got gcc to compile Perl V5.8.8 on AIX 6.1 due to stated cc_r issues while attempting to install CPAN. We do not have the IBM C compiler but using gcc and it "successfully compiled", I hope as no ...
2
votes
4answers
251 views

System.loadLibrary failing on java 1.6 but working on java 1.5

I have ran into a peculiar problem on AIX 6.1 and SLES 11 . I am trying to load a so file in Java using System.loadLibrary() call. Below is sample program: public class jniTest { public static ...
2
votes
3answers
276 views

date conversion DD-MMM-YY to YYYYMMDD

How to convert DD-MMM-YY to YYYYMMDD I am in AIX, using korn shell. neither date --date nor date -d works in aix.
2
votes
1answer
123 views

Checkout using cvs command line in an AIX box

I am struggling to do a checkout via a commandline from an AIX box. We have been typically doing the checkouts and having the builds via hudson on a Wintel box (and the CVS server was hosted on the ...
2
votes
2answers
298 views

Substitute or workaround for asprintf on AIX

I'm trying to build python-kerberos on AIX. kerberospw.c uses a call to asprintf, but from what Google is telling me, asprintf does not exist on AIX. I saw ...
2
votes
1answer
80 views

os.fork() sem_wait: Permission denied

I am trying to compile python 2.5 on AIX 6.1, and the following occurs: Python 2.6.5 (r265:79063, Jun 3 2010, 11:43:45) [GCC 4.2.0] on aix6 Type "help", "copyright", "credits" or "license" for more ...
2
votes
3answers
162 views

How to define where libs are loaded from

I am trying to compile omniORB on AIX 6.1 with gcc 4.2.0. The initialization does not work as it is picking up the non pthreaded library. If I set LIBPATH to ...
2
votes
1answer
94 views

Advice on AIX system to compile on or shell I can rent

I am a single developer and I have a small app that I sell. All of my customers have been on Solaris. I purchased an old E450 off ebay and compile and test happily. Now I have been asked a few times ...
2
votes
3answers
2k views

ORA-00060: deadlock detected while waiting for resource

I have a series of scripts running in parallel as a nohup on an AIX server hosting oracle 10g. These scripts are written by somebody else and are meant to be executed concurrently. All the scripts are ...
2
votes
4answers
333 views

When is a>a true?

Right, I think I really am living a dream. I have the following piece of code which I compile and run on an AIX machine: AIX 3 5 PowerPC_POWER5 processor type IBM XL C/C++ for AIX, V10.1 Version: ...
2
votes
1answer
358 views

getting core file

I am running a Core JAVA application on AIX machine, and it creates a file named "core". My concern are 1. I am not able to open this "core" file in "Heap Analyzer" or "Thread Analyzer". 2. Which ...
2
votes
2answers
249 views

ClassCastException caused by bug in Just In Time?

Given this piece of code : public static void writeFile(File file,List buffer)throws IOException{ File fic = new File(file.getCanonicalPath()); cat.debug("writing file : ...
2
votes
3answers
367 views

GCC option to get statvfs64

I am using statvfs function call on AIX. And using GCC compiler. I would like statvfs call to resolve to statvfs64 by preprocessor. Ex: In Solaris, using "-D_LARGEFILE64_SOURCE ...
2
votes
1answer
84 views

Counting program unaligned address accesses on Sun OS, AIX

How to count program unaligned address accesses on Sun OS and AIX. Or how to measure time to system handling this exception on Sun OS and AIX ?
2
votes
2answers
289 views

SWIG crashes on AIX (with python, and probably everything else SWIG support)

SWIG compiles and install easily on AIX. Unfortunately, a simple SWIG hello world (which also compiles - but not so easily) crashes with Segmentation Fault or Illegal Instruction (depending on some ...
2
votes
3answers
2k views

Determining whether a library archive for AIX is 32-bit, 64-bit, or both, from Linux

On AIX, I would run: ar -X32 -t libdb2.a and check for output to determine if there is a 32-bit object in the archive. Similarly with -X64 for checking for a 64-bit object. However, what about if ...
2
votes
1answer
690 views

AIX monitoring directory changes

I'm on AIX 5.3 and I'm a total noob with that OS. I was wondering if there is something like inotify on AIX so that one can monitor directories and files for changes instead of polling. I'm going to ...
2
votes
5answers
1k views

Advanced grep unix

Usually grep command is used to display the line contaning the specified pattern. Is there any way to display n lines before and after the line which contains the specified pattern? Can this will be ...
2
votes
1answer
173 views

Writing Kernel extensions for AIX

I am about to embark on a journey to write some kernel extensions for AIX 6.1. I would be very very great full to the community ,if they could provide me some assistance in finding books , articles , ...

1 2 3 4 5 6