cbagger01
Group: Members
Posts: 4264
Joined: Oct. 2003 |
|
Posted: Jan. 05 2005,04:45 |
|
This is correct.
There are few applications that are distributed in *.tar.gz archives that are in binary format. The most common ones are slackware packages.
Usually, a tar archive of precompiled binaries will mention the computer architecture that the program is compiled for. For example: *.i386.tar.gz could contain a precompiled program that is compiled to run on an Intel 386 processor architecture (also includes, 486, Pentium, Celeron, Athlon, Duron, etc).
Also, a good hint is to see if the archive contains files that are placed in a "bin" directory like /bin or /usr/bin
You can tell this by typing:
tar -ztvf filename.tar.gz | more
and it will display the list of files that are contained in the archive.
Good Luck.
|