Differences between revisions 1 and 2
Revision 1 as of 2007-06-18 15:18:44
Size: 803
Editor: anonymous
Comment:
Revision 2 as of 2007-06-18 15:34:27
Size: 811
Editor: anonymous
Comment:
Deletions are marked like this. Additions are marked like this.
Line 5: Line 5:
1)Obtain the source code for the application you need. It will be in compressed format so the next step is 1) Obtain the source code for the application you need. It will be in compressed format so the next step is
Line 7: Line 7:
2)  Unzip it. Navigate to the folder and read any documentation that may help you. It may save you a lot of time! 2) Unzip it. Navigate to the folder and read any documentation that may help you. It may save you a lot of time!
Line 13: Line 13:
''./configure''   ''./configure''
Line 15: Line 15:
''make''   ''make''
Line 17: Line 17:
''make install'' (this last command must be run as root).   ''make install'' (this last command must be run as root).
Line 21: Line 21:
''make uninstall''   ''make uninstall''

Compiling software from source - a rough & ready guide

Preliminaries

1) Obtain the source code for the application you need. It will be in compressed format so the next step is

2) Unzip it. Navigate to the folder and read any documentation that may help you. It may save you a lot of time!

Build your software

Though there are are different systems for building software (scons springs to mind) the most common method is as follows. Open a terminal and navigate to the folder containg the source code. Run the following commands:

  • ./configure

    make

    make install (this last command must be run as root).

If you complete these steps your software should be installed & ready to use. If you need to remove it just use:

  • make uninstall

Compiling (last edited 2011-08-09 03:21:13 by 0v0x)