Jump to content
Compatible Support Forums
Sign in to follow this  
jbtminer

Download installation

Recommended Posts

After downloading a program, any program, how do you install and run it ?? I am running Turbo Linux. Completely Lost :x

Share this post


Link to post

Most programs come in tarballs in other words source code compressed and packaged with gzip and tar respectively.

they usually have the file extension .tgz or .tar.gz .

these must first be un-compressed and unpacked.

 

$ tar -zxvf myNewProgram.tar.gz

 

You then cd into the directory created

 

$ cd myNewProgram

 

Inside you will always find a README script

 

$ less README

 

this will tell you the rest.

There are oyher ways in which programs are installed but it depends on the distribution you are using some are easier, but this method is common to all linux distributions, and better but more difficult for inexperienced users.

Share this post


Link to post

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
Sign in to follow this  

×