tar files are generally the same.
tar -xf <file name> turns the file into a folder
usually the rest goes like this
./configure
make
make install
sometimes it's not configure you should use but something else. you want to look in the folder created by the tar file for things like "install" "setup" general things like that. if you don't find anything like that, go with the ./configure and follow it from ther
(also: there usually are instructions in some kind of readme within the folder created by the tar file. just work through it)
|