• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

using .tar files

DirtylilTechBoy

Senior member
I am trying to install Wine. the end of the file was .tar.gz I used gzip -d filename to decompress it. That worked because the file went from being about 20 megs to about 35.

Now that it is a .tar archive file, what do I do with it. I tried double clicking and it said I dont have a program to run that file.

Help!

Jason
 
I do this for .tar.gz files:

tar xvfz whatever.tar.gz

for .tar files you can do this:

tar xvf whatever.tar
 
x - extract the files
v - verbose or verify... I *think* verbose (it prints the files extracted)
f - from a file instead of from stdin (unless you wanna hand-type your tar file 😉)
z - that ungzips the file (only use for a tar.gz file)

you can get all the options with "man tar"
 
For:

*.tar.gz use "tar zxvf NAME.tar.gz"
*.tar.bz2 use "tar jxvf NAME.tar.bz2" (note on some early versions of tar that support bzip2 you need to use capitol "i" ("I") instead of "j")

"man tar" or "info tar" has all the details...
 
Since you already have it uncompressed, you can extract it with:

tar -xvf filename

I ussually like to do tar -tvf first to make sure it unpacks to it's own directory instead of spewing files everywhere.
 
Back
Top