1,823 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
1
answer
60
views
cannot append index array to associative array sorts
The attached ksh93 enhanced korn shell script has worked happily for 15 years executing on Unix Aix v6.1 server however having upgraded to Aix v7.2 TL5 we're now finding upon executing the same script ...
0
votes
0
answers
92
views
GCC Errors After RPM Upgrade for Node.js 22 on AIX – Issues with libgcc/libstdc++
We're in the process of upgrading several RPM packages on an AIX system to support Node.js 22, but are encountering GCC-related errors after updating the following packages.
Here’s our upgrade list (...
2
votes
1
answer
51
views
Is there a syntax to allow empty list in for command using AIX 7.2 bin/sh
A generated script has no items in the for loop, in bash the empty list is accepted, however in /bin/sh (or /bin/ksh) on AIX 7.2 it fails.
eg. with 'test-empty.sh'
for v in
do
echo $v
done
$ . ...
0
votes
1
answer
90
views
IBM AIX 6.1 PPC assembly program compile issues when using .text with as
I am trying to write programs using 'as' and 'ld' in AIX 6.1. However I cannot get anything to work. At the moment I am dealing with two issues that are stopping me in my tracks.
In the code below, ...
5
votes
5
answers
151
views
Match pattern by passing a variable to awk as an alternative to grep -B
grep -B does not work on AIX so I am looking for an alternative with awk
I have a file with the following content
05/25/2025 M 301510sa AIX is vulnerable to information disclosure (CVE-...
0
votes
1
answer
89
views
Ansible WebSphere Liberty Install Failing
My Ansible task to install Liberty on an AIX server worked as expected and then when I tried another version it just fails now. It's possible that I am not seeing the actual cause of my issue but ...
0
votes
0
answers
167
views
Crash in __cxa_end_catch on AIX using XLClang++
I'm still trying to debug the crash detailed in Crash in std::make_exception_ptr on AIX
Had the thought that it had something to do w/ the use of std::exception_ptr, since i refactored some code to ...
Bwmat's user avatar
- 4,724
0
votes
2
answers
136
views
Export results from DB2 to CSV in several columns
I am working with IBM DB2. My operating system is Unix-based (AIX), and I am working directly on the console (No GUI). I have a table called "users". For the schema, let’s just use "...
0
votes
0
answers
58
views
Why Tomcat web form submission executing a shell script exits on while loop which is reading a txt file?
On AIX server, I have created a shell script that is doing the following -
The script gets environment_name and action (shutdown, startup) as input parameters.
Based on environment_name, it reads a ...
2
votes
0
answers
60
views
Creating a dynamically loadable shared archive on AIX with CMake
I'm attempting to create a dynamically loadable shared archive on AIX using CMake. I'm able to create a library successfully, however it fails to load with dlopen.
func.cpp
#include <stdio.h>
...
1
vote
1
answer
96
views
AIX 5.3 system returning ? for special characters in filenames
I am trying to get filenames containing special characters on an AIX 5.3 system using a Java program but its replacing the special characters with a question mark. This is in client environment. But ...
6
votes
4
answers
183
views
How to cut ranges from end to start?
I need to change the order of a string in AIX, but with the command cut I can't do it
Ex:
echo FT0215202301.xml | cut -b 7-10,5-6,3-4
Result:
02152023
Expected:
20230215
-1
votes
1
answer
57
views
Shell sort command with multiple priority but without "-k"
I'm on a very old AIX 6.1 system and I need to understand a "sort" command.
Due to the age of the system, I can't find any documentation. And the '-h' option is not very helpfull.
Usage: ...
0
votes
1
answer
107
views
AIX: C++ application with shared Qt5Core lib dependency has thread-local-storage runtime issue
I am on IBM AIX-7.2 and have this sample C++ code:
#include <QtCore/QCoreApplication>
#include <QtCore/QDebug>
#include <QtCore/QDateTime>
#include <cstring>
int main(int argc,...
1
vote
2
answers
130
views
Flock calls in perl module on AIX systems
I'm trying to make the following project work on AIX systems. I have almost finished, the end is near but I srill have an issue at tha execution of the agent.
My AIX Systems do not have flock ...