Jump to content

What to do after uncompressing tar.gz application


raydona

Recommended Posts

Hi,

  Please bear with me as I am completely new to all this. I have installed an application called antiword on Apache/1.3.33 Server to convert Word docs to text documents. The app was in tar.gz form. I used php to decompress the file. What do I do after that? I wish to get to the exe (Setup) file. I have read on other web sites that I should compile the uncompressed app. How do I do that using PHP? I would be grateful for all suggestions.

PHP can't compile anything except PHP code (and that it sort of compiles).

 

 

 

Anyway, you will first need to make sure it can be compiled on your OS.  (I'm going to assume it's some Linux distro.)  Then, you'll need to get into terminal (through something like Putty over SSH if it's a remote server, or just open terminal if it's your local computer).  Then you'll just need to read the README and see what it says.

 

 

If I had to guess, I would guess:

 

./configure

make

make install

Might I also suggest using your OS's package manager to install this application. Linux distro's these days all come with some sort of package management system designed to manage packages.

 

If you install using your package manager it will take care of all the applications dependencies for you which can otherwise be a pain at times when compiling things yourself.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.