Purify : command not found


 
Thread Tools Search this Thread
Operating Systems AIX Purify : command not found
# 1  
Old 04-28-2014
IBM Purify : command not found

I just installed IBM PurifyPlus on IBM AIX 5.3 and they suggested me to run the command through the following one:

Code:
% purify cc -g hello_world.c

but it's giving me the message that :

Code:
purify command not found

I need your help

Thanks In Advance
# 2  
Old 04-28-2014
If it is installed, it might not be in the path.
You can try locating it with:
Code:
lslpp -f | grep purify

When you found it, you can add the directory to your PATH or just call it with the absolute path.
This User Gave Thanks to zaxxon For This Post:
# 3  
Old 04-28-2014
Thanks Zaxxon for your answer ..
I didn't mention that I'm so new to Unix system, I will really appreciate if you show me exactly what I have to do to "add the directory to the PATH"
I tried the command
Code:
lslpp -f | grep purify

but it didn't give any result

---------- Post updated at 10:17 AM ---------- Previous update was at 09:42 AM ----------

I just find out how to do it (to add the directory to the PATH) but it still displays the same message :
Code:
purify : not found

any ideas ?
# 4  
Old 04-28-2014
I suspect it means what it says -- the command is not installed.
This User Gave Thanks to Corona688 For This Post:
# 5  
Old 04-28-2014
Thanks Corona688 for your reply , but I don't think that's the problem, because I had this message after installing Purify :
Code:
The rs_install command completed successfully

---------- Post updated at 10:54 AM ---------- Previous update was at 10:47 AM ----------

thanks a lot , it's working :)
I added a wrong directory :D
This User Gave Thanks to SteAlma For This Post:
# 6  
Old 04-29-2014
When lslpp did not display anything, it seems it is not handled by the AIX package manager.
It seems to be plainly installed into a filesystem/directory.

When installing this software, was there any question by the setup, in which place it should be installed?
Or maybe it wrote a log of it's installation run. Sometimes such are somewhere in /tmp.

If the setup (rs_install?) might be a script, you could have a look in there, if there is a default path being used for installation.
This User Gave Thanks to zaxxon For This Post:
# 7  
Old 04-29-2014
Quote:
Originally Posted by zaxxon
It seems to be plainly installed into a filesystem/directory.
Yeah that's right , I created a directory for the installation ..I added the ../bin to the PATH and now it's working ..
Quote:
Originally Posted by zaxxon
it seems it is not handled by the AIX package manager
could you please explain what's the AIX package manager ? and how it works ,?
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. AIX

Error while instrumenting purify

when i instrument ourify i am getting error like .*** OI_init: Error, cannot connect to X server Purify or PureCoverage slave: Warning: Can't open display "localhost:0", using tty mode. . Got it] I am using AIX1.6 OS i have xwin32 installed in my windows.. (1 Reply)
Discussion started by: greenworld123
1 Replies

2. AIX

Getting error when instrumenting a C program with Purify

When I use this command: purify gcc -g hello_world.c to instrument a C program with Purify, I get this error : Purify engine:Error: The /usr/lib/syscalls.imp file either does not exist or has incorrect permissions.You may need to install bos.adt.syscalls I understand that I need to install... (11 Replies)
Discussion started by: SteAlma
11 Replies

3. Shell Programming and Scripting

Want to terminate command execution when string found in the command output

Hi Experts, I am very much new to linux scripting, I am currently working on reducing my manual work and hence writing a script to automate few task. I am running below command to snmpwalk the router.. snmpwalk -v 3 -u WANDL_SU -a MD5 -A vfipmpls -x DES -X VfIpMpLs -l authPriv... (19 Replies)
Discussion started by: Hanumant.madane
19 Replies

4. Shell Programming and Scripting

When i am trying to execute export command within a shell script it is saying command not found.

I am running the export command within a view to use that value inside my build script. But while executing it it is saying "export command not found" My code is as follows: -------------------------- #!/bin/sh user="test" DIR="/bldtmp/"$user VIEW="test.view1" echo "TMPDIR before export... (4 Replies)
Discussion started by: dchoudhury
4 Replies

5. UNIX for Advanced & Expert Users

Rational® Purify® compatable SW

Hi Rational® Purify® is a dynamic software analysis tool - helps to clean your own C or C++ code from memory leak problems etc. Who knows some compatable (my be freeware) software? (1 Reply)
Discussion started by: baruchgu
1 Replies

6. AIX

Purify and AIX compiling problems.

Hi, i'm trying to work with a trial version of PurifyPlus 7 with fixpack 10 from Rational that needs to run over an AIX 5.3 platform, 64-bit. I had success on compiling and running the hello_world programs and even a hash test program i found over the net, but purify can achieve the same with the... (0 Replies)
Discussion started by: chrispav
0 Replies

7. Shell Programming and Scripting

how can i check in csh if command found or not found ?

hello all im trying to use in sun Solaris the information received from the top command now i several machines that dont have install the top program so when im running the script im geting error saying after im running this code : set MemoryInfo = `top | grep Memory` if (... (2 Replies)
Discussion started by: umen
2 Replies

8. Programming

probelm with purify

Hi, I am using purify to find memory leak in my process. When I run the instrumented program I get error I donot have this file in the specified directory. Instead I have following files in the directory /usr/lib/nls/loc/locales.2 What should I do in such case? I undersatnd... (1 Reply)
Discussion started by: shriashishpatil
1 Replies

9. Programming

Problem with build using Purify

Hi, I am facing problem while doing build on AIX using xlC compiler. We are using purify. Purify fails to instrument the a few libraries. Interestingly these are not developed by us and are 3rd party SW components. Can someone let me know how to proceed with the build? Here is the output... (0 Replies)
Discussion started by: asutoshch
0 Replies

10. UNIX for Advanced & Expert Users

Purify-SGI Fatal Error

Hi , attempting to purify code on the link line generates a fatal error like this #ERROR: (fatal) Cannot find libtest.so in the search path . command line: ------------- purify -show-directory=yes -always-use-cache-dir -cache-dir=/ppic/users/avadhani/sgi/pure /usr/bin/CC -n32 -mips3... (2 Replies)
Discussion started by: avadhani
2 Replies
Login or Register to Ask a Question