View Single Post
  #4  
Old 20th Dec 01, 12:08 PM
Zone-MR Zone-MR is offline
M.I.A.
 
Join Date: Sep 2001
Location: Near Newcastle, UK
Posts: 1,077
Zone-MR will become famous soon enoughZone-MR will become famous soon enough
Send a message via MSN to Zone-MR
I presume you mean you want to install a package supplied as source code and not as binaries?

Well, sometimes it varies, but the general procedure is as follows.

1. If the file comes as a tar.gz file, you need to extract it. This can be done by typing "tar -zxf tarname". After this is done you change to the directory where the files went using the cd command.

2. Most source code distributions come with a script that compiles and installs the program. Type "make" at the shell and press enter. If all goes well, you should see the program being compiled.

3. Check if the program comes with an install script. Type "make install" at the shell. If you get an error, do an "ls" to see all files and see if the make command created an exceutable file. If it did, it can be launched by typing "./filename".

Good luck!
__________________
[img]http://celltrack.spv-developers.com/render/Zone-MR.png[/img]
[url="http://future.betaone.net/forum/links.php?url=http://future.betaone.net/forum/links.php?url=http://zone-mr.net"]http://zone-mr.net[/url] - Transcribing Life
Reply With Quote