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.
1
vote
0answers
2 views
write(/proc/<pid>/ctl): The requested resource is busy
My application front end and back end are on java and c respectively. The interface is via listener processes on C-side. If there is an error on the c-side, the corresponding listener process which is ...
1
vote
1answer
34 views
while do doesn't work in a bash script on AIX
I'm building a script that uses a while loop like the following:
$sync=0
while [ $sync -eq 0 ];
do
body of the loop where $sync get changed sevaral times
done
The probleme is when I execute the ...
0
votes
0answers
23 views
Issues while using script (typescript) command with rksh restricted ksh
I have a scenario where I want to log every activity for a particular user. I have a script built around the script command which I invoke from the user's .profile. Now the requirement is that the ...
0
votes
1answer
18 views
How to execute using path on AIX
When I try to execute a command within a folder :
$ omniidl
omniidl: No files specified. Use 'omniidl -u' for usage.
But, when I try to execute it using the path:
$ ...
0
votes
1answer
46 views
How to Find and Print using Shell Script in AIX Server?
I have one big file with the content as below:
dn: CN=Brower\, Stephen,OU=Recipients,OU=Mailboxes,OU=Exchange2000,DC=raritanval,DC=edu
changetype: modify
replace: department
department: Computer ...
0
votes
0answers
26 views
which software project for a aix disk partition scanner for linux [closed]
After having looked after a aix lvm logical volume discovery tool and a aix jfs file system driver for linux, I have written both myself (for read-only access only). I plan to submit the jfs driver ...
0
votes
1answer
22 views
What is the equivalent command for objdump in IBM AIX
I am not able to find objdump command in IBM AIX 5.1 machine. Actually I want to get the assembly instructions (disassemble) from a library generated in AIX. Linux has objdump command and solaris dis ...
0
votes
1answer
45 views
Passing value from one shell script to other
This is what I am trying
script1
var=10
sh -x script2 "$var"
script2
su - someuser << EOF
1
cd dir
echo "This is : $1 Error" >> somefile
2
2
0
exit
EOF
Everything in script2 is ...
0
votes
0answers
9 views
How to modify the sender name in AIX mail command
I am supposed to modify the sender name in AIX mail command to something like this : "Centralised Operations support" instead of this format : @sever-name.
I used this command : cat $MailBody | mail ...
0
votes
1answer
50 views
GDB:how to debug core file in AIX machine
I'm unable to debug core file generated from AIX machine.
uname -a
AIX dev 1 6
file /usr/bin/ld
/usr/bin/ld: executable (RISC System/6000) or object module
oslevel -g
Fileset - bos.rte
...
1
vote
2answers
51 views
How to get a particular word from a particular line from the output of unix command in shell script?
I want to run a command in shell script for ex ls -al and want to get 3rd word of 5th line how can I get can anyone help.
What I was trying is
str = $(ls -al foo | cut -d" " -f3)
this is storing ...
0
votes
1answer
75 views
Bash, splitting files from directory into groups by size (low peformance)
I have a problem with my Bash script to split all files from directory into groups where each group size is 1GB.
I have a script that looks like this:
#!/bin/bash
path=$1
unset i
echo $path start
...
0
votes
1answer
18 views
How to cut a particular piece of data and store it in a String in Shell Script
I am new at Linux and I am having problems with getting a piece of data from the String. What I tried is
str = $(openssh version) | cut -d" " -f2
This is what I did the line is not showing any ...
0
votes
2answers
19 views
Multiple SSH public keys into a single file
I'm trying to sftp to a host which acts as a load balancer and routes to 3 other systems based on round robin.
Our public key is setup on their systems. Yet, when ever I try to connect, I get ...
1
vote
1answer
37 views
KSH script won't email when nohup
I have a unique issue, i am in a unix environment and have a ksh script that ssh's to multiple sites, executes some code and then returns a response and then emails that response to an email address.
...
0
votes
1answer
11 views
xlC ignores option for offsetof on POD
Summary
I am trying to compile an old C++ application on a new AIX 7 box with the AIX 11.1 compiler. This application uses offsetof on non POD classes.
I set the langlvl option to strict98 and also ...
1
vote
3answers
92 views
Subtract two variables in unix
This is my script which i am running on UNIX(AIX):
$MON date +"%m"
echo 'expr $MON - 2'
Output:
04
expr $MON - 2
I just want to subtract 2 from my current month and display .
Thanks in adavance
...
0
votes
4answers
59 views
how to get the second column from command output with awk
My command's output is something like:
1540 "A B"
6 "C"
119 "D"
The first column is always a number, followed by a space, then a double-quoted string.
My purpose is to get the second column ...
1
vote
2answers
72 views
Does -Djava.library.path work on UNIX JVMs?
I have a Java application that relies on some legacy code written in C, which it accesses via JNI. The native libraries are stored in a sub-directory (actually, there are two sub-dirs: one with 32-bit ...
0
votes
1answer
43 views
apache 2.2 couldn't load a module on AIX 6.1
I am testing an auth module with apache 2.2 server on 6.1 power AIX, 64 bit platform. The apache server doesn't start at all when I give my module path name in httpd.conf, it works fine on AIX 5.3 ...
0
votes
1answer
82 views
Script to check if Ports are running
I need help in order to check if two local ports are running in my box and if that is the case open a port.
For Example:
DB2 Port : 50001
MQ Port: 1414
If both are open, Open Port 45 for listening ...
0
votes
1answer
28 views
AIX special keys
I connect to AIX 5.3 through ssh from Centos 6. Shells on AIX and Centos are bash. When I press "Home", "End", "PgUp", "PgDwn" in shell, bash typing tilde (~) and curson not moving to end or begin of ...
0
votes
1answer
44 views
Python installation on aix
Is it possible to install Python on AIX server. I have installed it on Linux and Windows but not able to find the correct installables for AIX
0
votes
1answer
20 views
Retrieving old queries
I'd like to see the queries a user executed within a date range. Is this possible? If so, how?
For example, a query was executed a few days ago, and I'd like to retrieve it. Manual queries are not ...
1
vote
1answer
57 views
Linking against a shared library on AIX
I'm trying to link against a shared library (apr) on AIX 5.3 using gcc/libtool.
The output from the compiler is as follows (with some irrelevant flags removed for the sake of simplicity):
libtool: ...
-1
votes
4answers
76 views
Pick up only fully written files in java [closed]
I have a directory in aix which will receive files from a external application.
My java program should pick only those files which are completely written by the application.It should not pick the ...
1
vote
1answer
46 views
Compiling ANTLR 3C for AIX
I'm not too familiar with compiling for C, so if I don't give enough information, let me know what you need me to post!
Here's the summary: I need to run ANTLR in the target language of C on a ...
-1
votes
1answer
30 views
Displaying files that are group or world writeable in a home directory
I'm trying to create a script that will display all the files that are group and world writeable in a home directory.
Warning: The script will run an endless loop of file not found if you run it ...
0
votes
1answer
37 views
Writing Device Drivers for AIX…Suggestions
I would like to learn how to write device drivers for IBM AIX OS.
I wanted to know is there any way to do this?
Can I download AIX? any books or docs available on the same?
If not, then if I learn ...
0
votes
1answer
33 views
M2crypto compilation on aix
When compiling M2Crypto module on AIX5.1 with following scrambled command:
/opt/local/python/2.7.3/bin/python setup.py build_ext --swig /opt/local/swig/1.3.4/bin/swig -I ...
0
votes
0answers
47 views
Unable to start Apache on AIX
I installed Apache on AIX machine. I followed these steps:
• Extract Apache File into the folder-
gunzip -d httpd-2_0_64.tar.gz
tar xvf httpd-2_0_64.tar
• It will create a new ...
-1
votes
1answer
34 views
Authenticating multiple certificates via .ftpcnf [closed]
Using Unix I am attempting FTP over TLS. To do this I know I need to edit the .ftpcnf file with a CA_PATH and a .pem file. I can get this to work with one server at a time but I need one account to be ...
0
votes
1answer
169 views
Unable to connect to AIX(Unix) box with SSH.NET Library - Error : Value cannot be null
I am trying to connect to an AIX box and execute some commands using SSH.NET library.
The following is the code snipplet
KeyboardInteractiveAuthenticationMethod kauth = new ...
7
votes
1answer
102 views
How to prevent ksh on Linux to overwrite a global varibale by a local variable?
I am involved in the process of porting a system containing several ksh scripts from AIX 6.1 to SUSE-Linux. I have come across the following difference in the way ksh behaves on the two systems:
# ...
0
votes
0answers
42 views
Trap user into folder [closed]
This is an AIX Box with WAS on it, i need to trap an user to only execute commands in the following WAS dir:
/usr/IBM/WebSphere/AppServer/bin
Problem is that all these files are under the root ...
1
vote
2answers
116 views
AIX Bash Compare datetime strings
I have two log files.
Log File "Out":
One records a remote "request"
Many lines, only worth tracking starts with TRX
TRX Sent: 02-000330408-01 Type: N Timestamp: 20130322-11474100
Log File ...
0
votes
2answers
119 views
xlc: not found on aix 6.1
On install path of websphere MQ/java/lib/jdbc>make oracle
I am getting below error
xlc: not found
I am not sure if xlc is installed in my machine. My machine is AIX 6.1. But I can find xlcpp in my ...
1
vote
1answer
89 views
Using XA transactions with WebSphere MQ in standalone Java
For using XA transactions with WebSphere MQ in standalone Java I am doing below step and getting error as xlc not found
step 1- Prepare the XA switch files
For linking object files to their ...
0
votes
1answer
24 views
AIX binaries - size & symbols
There are a few differences noticed in symbols between two binaries built using same sources on two AIX systems. One example for 'main':
xxxx1: .main T 4294975624
xxxx2: .main ...
0
votes
2answers
54 views
xargs to copy one file into several
I have a directory that has one file with information (call it masterfile.inc) and several files that are empty (call them file1.inc-file20.inc)
I'm trying to formulate an xargs command that copies ...
1
vote
1answer
107 views
Change build c compiler
I'm trying to build python 2.6.8 from source code on an AIX 6.5 machine, but several modules can't build successful. In the build process, there is a XLC man page jumps out and stucks. I have to press ...
1
vote
0answers
118 views
Failed to build Python packages when installing Python on AIX
I'm very new to python and I'm trying to install python 2.6.8 from source code on an AIX 6.5 machine. I built with these commands:
CC=gcc CXX=g++ ./configure --enable-shared
make
And I get these ...
1
vote
1answer
66 views
Compiling static template functions on AIX 7.1 xlc++
Our source code has a bunch of standalone static template functions. I need to compile it on AIX 7.1 Power 7 system with IBM's native xlc++ compiler. Using static keyword with standalone functions is ...
0
votes
0answers
92 views
physical memory mapping to websphere application servers
Suppose, there is a server (8 CPUs, 4 cores each) which has 64 GB RAM. WAS is installed in it and has 8 application servers managed by a single node agent and deployment manager. In this case, how ...
0
votes
1answer
40 views
-prune in find working without OR(-o) option - Unix
$pwd
/tmp
$touch 1.tst 2.tst
$mkdir inner_dir
$touch inner_dir/3.tst
$find . ! -name . -prune -name '*.tst'
1.tst
2.tst
I want to restrict 'find' to search only to the current directory for the ...
-2
votes
1answer
187 views
AIX Command to find difference between two files [closed]
Friends, I was looking for single line AIX command to achieve below task. Any help ?
diff file1.txt file2.txt
If difference found pause or exit and no difference continue to next step.
0
votes
0answers
33 views
svn client with encrypted passwords on AIX
I am trying to setup svn client to use encrypted passwords on our AIX box. As I understand from here, there are two main options:
Gnome-keyring or Kwallet --> will this work on AIX?
encfs --> not ...
0
votes
2answers
44 views
Need to combine 2 cron lines to 1 if possible
I need to create a cron entry that will kick off a command at both 11:30AM and 4:00PM monday through friday. Is there anyway to do this in one entry or will I need to use two?
This would be great ...
0
votes
0answers
151 views
Interpreting LUN id and Target id in AIX using lsattr
I am very new to AIX, I found a command in AIX, lsattr, which is helpful to get the SCSI id and LUN id of a device. I can not understand how to interpret the value of SCSI id and LUN id. Here is a ...
0
votes
1answer
18 views
How to substitute n characters in each line of a file by position
I have to anonymize fields in a file which have no delimiters.
In my case, by chance, those fieds are the one after the other.
exemple :
1234LASTNAME1¤¤¤¤¤¤¤¤¤¤¤FIRSTNAME1¤¤¤¤¤¤¤¤¤¤2013-01-01
...

