Error when trying to use GNU profiler on AIX


 
Thread Tools Search this Thread
Operating Systems AIX Error when trying to use GNU profiler on AIX
# 8  
Old 06-18-2014
It's not installed.
# 9  
Old 06-18-2014
seeing that I'm still being new working on AIX could you please give me a link to a tutorial or something that can help me to install lt ?
thanks in advance
# 10  
Old 06-18-2014
It's a long time since I installed any OS packages on AIX, but this looks promising.
This User Gave Thanks to CarloM For This Post:
# 11  
Old 06-19-2014
Quote:
Originally Posted by SteAlma
seeing that I'm still being new working on AIX could you please give me a link to a tutorial or something that can help me to install lt ?
thanks in advance
Installing software on AIX is straightforward (i suppose you have just the package there, no NIM-server to use, etc.). You have to do everything that follows as root:

put the package file to a new directory. If it has dependencies (see below) put them there too. At last change to this directory:

Code:
# mkdir /tmp/myinst
# cp pkg.file.1 /tmp/myinst
# cp pkg.file.2 /tmp/myinst
...
# cd /tmp/myinst

call the "inutoc" utility to create an inventory file. The file "./.toc" is created:

Code:
# inutoc .
# ls .toc
.toc

You can even inspect the file, it is plain text. Now use SMITty to install the package(s). It can be done from commandline too, but you might find it easier to do it from a menu:

Code:
# smitty install_all

in the upcoming menu select "." as the installation directory and in the following mask select "accept all license agreements", deselect "view license agreements", select "commit software" and deselect "overwrite same or newer versions".

Check "preview only" to see if everything would do OK, once you are satisfied with the results deselect that field to do the installation in real.

If you get prerequisite failures copy the respective package files to the same directory, run "inutoc" again and try again.

I hope this helps.

bakunin
This User Gave Thanks to bakunin For This Post:
# 12  
Old 06-19-2014
Hello CarloM & Bakunin,
Thanks a lot for your help, but the problem is that I can't find the Gnu profiler package !! I looked for it on perzl and on IBM web site but I didn't find it ...
any direct link to download it ?
Thanks in advance
# 13  
Old 06-19-2014
Quote:
Originally Posted by SteAlma
but the problem is that I can't find the Gnu profiler package !!
No. Your immediate problem, as you described it, is that the package "bos.adt.prof" is not installed. This is part of standard AIX (though it is not installed per default) and should be on your installation sources (your installation CD, the lpp_source of your NIM-Server, ...).

I hope this helps.

bakunin
This User Gave Thanks to bakunin For This Post:
# 14  
Old 06-19-2014
I'm pretty sure it is bundled with the GNU C compiler in the "AIX tool box for linux"..

You can do the google stuff ;0)
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. AIX

GNU TAR vs NATIVE AIX TAR

Hello, Getting this very strange error, made tar/zip through gnu tar GNU Tar ( successful tar and zip without any errors ) /opt/freeware/bin/tar cvf - /oraapp| gzip > /backup/bkp_15_6_16_oraapp.tgz GNU unTar error root@test8:/>gunzip < /config1/bkp_15_6_16_oraapp.tgz |... (5 Replies)
Discussion started by: filosophizer
5 Replies

2. UNIX for Advanced & Expert Users

Error due to unset variable - Solaris vs GNU Linux - Help needed

Hi all, I have a weird problem. When i run the below code in SunOS and Linux i get different outputs ==== $ cat tst.ksh #!/bin/ksh echo "Abc" > $LOG_FILE echo "Ret - $?" ===== In Solaris $ ./tst.ksh Abc Ret - 0 In GNU Linux (1 Reply)
Discussion started by: NickKnight
1 Replies

3. AIX

Cannot compile/install gnu program on AIX

Hello, I'm trying to install ansifilter which is a program that translates ansi text to HTML. The idea is to install it on AIX 7.1 but is failing. All de appropriate gcc libraries and requirements for this software were installed successfully, but when I do the gmake I get the following... (0 Replies)
Discussion started by: bazajav
0 Replies

4. AIX

gnu make fir AIX 5.3 and gcc 3.3.2

Hi all i had installed gcc version 3.3.2 on my AIX 5.3 machine. which make utility i have to instal so it will fit the gcc version tnx skfn (2 Replies)
Discussion started by: skfn1203
2 Replies

5. AIX

GNU/GCC on AIX server without Root rights

Hello I'm new to this Forum and I've got a big Problem. Currently I have to Install Bacula ( Backup Software) on a IBM machine(with AIX 5.3) via SSH there is no chance for me for a directly interaction with the Server. The Main problem is, I don't have Root access and no chance to get it. And... (5 Replies)
Discussion started by: maxkoch
5 Replies

6. Shell Programming and Scripting

AIX equivalent to GNU grep's -B and -A [print lines after or before matching lines]

Hi folks I am not allowed to install GNU grep on AIX. Here my code excerpt: grep_fatal () { /usr/sfw/bin/gegrep -B4 -A2 "FATAL|QUEUE|SIGHUP" } Howto the same on AIX based machine? from manual GNU grep ‘--after-context=num’ Print num lines of trailing context after... (4 Replies)
Discussion started by: slashdotweenie
4 Replies

7. AIX

GNU Tar with compression for AIX 4.2 already compiled ?

Is there a GNU Tar available with compression option available for AIX 4.2 that I can directly use (not having to compile anything, simple installation) ? (1 Reply)
Discussion started by: Browser_ice
1 Replies

8. UNIX for Advanced & Expert Users

Porting GNU FTPD daemon from Linux to AIX

Dear All, I want to port GNU ftpd daemon server from Linux to AIX. I want to download GNU ftpd daemon for linux. Please tell me from where I can download this code and which code will be most suitable for this porting? Please help in this regard. Thanks Siva (0 Replies)
Discussion started by: srksn
0 Replies

9. UNIX for Advanced & Expert Users

GNU's make error codes - list

Hi, I often encounter make errors. Many a times, a corresponding error code is also shown, like make: Error 56 (ignored) make: Error 91 (ignored) make: Error 96 (ignored) et al. I tried google'ing as well as searching this forum for what these error codes mean. I know, make... (1 Reply)
Discussion started by: vino
1 Replies
Login or Register to Ask a Question