How to compile a package in AIX when we download its source?


 
Thread Tools Search this Thread
Operating Systems AIX How to compile a package in AIX when we download its source?
# 1  
Old 03-01-2010
How to compile a package in AIX when we download its source?

How to compile a package surce in AIX when we download its source?
# 2  
Old 03-01-2010
Typical instructions.
The package arrives as package.tar.gz
After the tar command, cd package and look for README, INSTALL.sh etc

Code:
gzip -d package.tar.gz
tar xvf package.tar
cd package
./configure
./make
./make install

# 3  
Old 03-01-2010
Thank you
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. AIX

XVFB Source package for AIX

Please send me link for XVFB Source package for AIX (3 Replies)
Discussion started by: prathap.g
3 Replies

2. Red Hat

RHEL Package download

Hi All, I am a Solaris administartor. I got in to a probelm with RHEL. I thought someone can help me on this forum .. Can we download/install packages on a Redhat server with yum with out registering on RHEL network or website ? (1 Reply)
Discussion started by: sri243
1 Replies

3. Solaris

Which Solaris 11 download package to use

Hi, One quick question: Which download package should I use to install the whole Solaris 11 OS? Can I use the Text Install package that is only 400 MB? or I need to use the Solaris 11 11/11 Repository Image package? I am in hurry to do it but somewhat confused here. Thank you in advance! ... (6 Replies)
Discussion started by: aixlover
6 Replies

4. Ubuntu

How to list my program or package that i compile and installed?

Hi I would like to ask in ubuntu or linux on how to list all my package or software the i installed via source code( compile installed in dir default is /usr/local) just like i solaris in which if you installed a package in ur choosing default root installation dir you can just issue a command... (2 Replies)
Discussion started by: jao_madn
2 Replies

5. AIX

Where to download Sudo V172p7 or how to compile it?

I need install Sudo V172p7 in AIX V5.3, however, in Sudo Main Page, there only .c files for Sudo V172p7. Where to download Sudo V172p7 rpm or bff? Or how to compile it? (1 Reply)
Discussion started by: rainbow_bean
1 Replies

6. Ubuntu

Download same package as installed

Hi gurus, how to (just) download already installed package ? I tried sudo apt-get -d install putty but gives me Reading package lists... Done Building dependency tree Reading state information... Done putty is already the newest version. 0 upgraded, 0 newly installed, 0 to... (7 Replies)
Discussion started by: wakatana
7 Replies

7. UNIX and Linux Applications

How to compile from source code?

Hi all, I downloaded the source code for a pkg. But i dont know how to build from it? I have no prior experience in building from source,so could you pls help me? I tried ./configure(after entering into the dir containing the src codes) but it generated some errors!!!!! Some files... (1 Reply)
Discussion started by: wrapster
1 Replies

8. Programming

error trying to compile a c++ source file

i tried to compile a c++ file using the g++ command: g++ <filename>.cpp -out <output_file> and i received the following error message: ld.so.1: gcc: fatal: relocation error: file gcc: symbol bindtextdomain: referenced symbol not found Killed is it that i am using incorrectly the... (1 Reply)
Discussion started by: ldrojasm
1 Replies

9. Programming

I have not c compile environment ,i can download it but it ends with *.gz,so i can't

I need for help . (1 Reply)
Discussion started by: dsun5
1 Replies

10. Programming

compile rpm-4.0 source

Hello Unix experts, I downloaded rpm-4.0 source from ftp.redhat.com and tried to make it. There are something I could not understand. - Makefile.in and Makefile.am instead of Makefile - file INSTALL doesn't show clearly the steps of compiling What are these 2 files, Makefile.in and... (2 Replies)
Discussion started by: eddie
2 Replies
Login or Register to Ask a Question