Questions tagged [aix]

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.

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.

Resources

1819 questions
0
votes
2 answers

Passing variable from one script to another in unix aix

I am passing variable from one shell script to another which is being executed on another remote server. Script 1 echo "Identification No." read id export id ssh atul@10.95.276.286 'bash -s' < data_file.sh Script 2 echo "ID is ---- "$id cd…
atul329
  • 67
  • 1
  • 3
  • 9
0
votes
2 answers

Find and repalce string that includes quotes within files in multiple directories - unix aix

So here's the scenario. I'd like to change the following value from true to false in 100's of files in an installation but can't figure out the command and been working on this for a few days now. what i have is a simple script which looks for all…
SamiSam
  • 11
  • 2
0
votes
2 answers

Equivalent of mm_storel_epi64 in AltiVec?

I am working on a project using AltiVec programming interface. In one place I want to store 8 bytes from a vector register to a buffer. In SSE, we have an intrinsic _mm_storel_epi64 to store lower 8 bytes of a SIMD register to a buffer. Any ideas on…
sunmoon
  • 1,448
  • 1
  • 15
  • 27
0
votes
1 answer

error to delete files older than 1 day from csv list

I want to delete files in a directory, from the supplies csv file if its older than 1 day. I tried to print them for test purpose: in.txt 1,one 2,two code: INPUT="in.txt" while IFS=',' read -r id name do find tmp/$name -mtime +1 -type f …
user2711819
  • 960
  • 3
  • 16
  • 29
0
votes
1 answer

please anyone can give me the link of eclipse for AIX6.1 64bit

I tried so much but i didn't get eclipse for AIX6.1, please anyone can give me the link of eclipse for AIX6.1 64bit, thanks in advance.
0
votes
0 answers

Directory permission in AIX is changing to nobody

I am using an AIX system. The directory I am using is on GPFS(Type mmfs in mount command) [Not NFS]. What I am seeing is time to time the ownership is changing to nobody. I was wondering if someone can help me understand what activity can change the…
Soumya Das
  • 109
  • 1
  • 1
  • 8
0
votes
1 answer

how can i run 3 while loops simultaneously in unix and update the output of each loop to database as soon we get the output

i have a program that must fetch information from database & after performing required commands in unix ,o/p must updated back the to database.here fetching information from 3 tables & output must be updated to one table as soon as i get the output…
jenny
  • 3
  • 2
0
votes
2 answers

AIX specific socket programming query

Question 1 From SUSE man pages, I get the below details for socket connect options If the initiating socket is connection-mode, then connect() shall attempt to establish a connection to the address specified by the address argument. If the…
kumar_m_kiran
  • 3,982
  • 4
  • 47
  • 72
0
votes
1 answer

how to speed up openssl generate md5 checksum

I'am facing a problem, in AIX platform, we use a command to generate checksum: Sample: exec 0> checksum.out done But this last for a long time. I find out that our cpus still have free resources. It's…
krad
  • 51
  • 4
0
votes
0 answers

Handling page faults with vec_ld

I have the following program to load a vector in to vector register. char *buf = (char *)malloc(10); vector unsigned char t = vec_perm( vec_ld( 0, (unsigned char *)buf), vec_ld( 15, (unsigned char *)buf), …
sunmoon
  • 1,448
  • 1
  • 15
  • 27
0
votes
0 answers

send inline html charts and diagrams via unix

I am trying to generate some report and send it through unix. This report contains PIE-charts any idea how to inline send charts in mail body. I tried below code. HTML is working in browser but after I send the HTML over mail it does not shows…
user1011046
  • 204
  • 1
  • 5
  • 16
0
votes
1 answer

Can't make REDIS 2.8.19 on AIX 6.1 and GCC

I'm trying to compile the code on the redis-2.8.19 tag in an AIX 6.1 machine with gcc. I unzip the file and then I launch the following command: gmake distclean; CC=`which gcc` gmake -j I tried with and without the -j flag, with the same…
Carlos Delgado
  • 552
  • 7
  • 23
0
votes
1 answer

what is the meaning of "units of kilobytes * seconds-of-execution"?

I use getrusage api on aix. I don't understand ru_idrss field. ru_idrss An integral value of the amount of unshared memory in the data segment of a process (expressed in units of kilobytes * seconds-of-execution).
user2590398
  • 37
  • 1
  • 4
0
votes
2 answers

shell script to loop and start processes in parallel?

I need a shell script that will create a loop to start parallel tasks read in from a file... Something in the lines of.. #!/bin/bash mylist=/home/mylist.txt for i in ('ls $mylist') do do something like cp -rp $i /destination & end wait So what I am…
user1709091
0
votes
1 answer

Count the running process in AIX by it's name in C

Operating system: IBM AIX 5.3 Compiler: xlc Hello Everyone I have a project that using C to process some files using multi-processes. The number of sub-processes are mainly depends on the the number of incoming files and the number of current…
Ran Bao
  • 156
  • 2
  • 5