H htmlmasterdave Golden Member Jul 13, 2001 1,309 0 0 Feb 10, 2002 #1 How do you unzip tar.gz files, and install them?
H Hector13 Golden Member Apr 4, 2000 1,694 0 0 Feb 10, 2002 #2 gunzip my_file.tar.gz that should produce a tar file, then run: tar xvf my_file.tar If you have GNU gunzip, I think you can just run gunzip with some option to cut out the second step. In either case, the above should work
gunzip my_file.tar.gz that should produce a tar file, then run: tar xvf my_file.tar If you have GNU gunzip, I think you can just run gunzip with some option to cut out the second step. In either case, the above should work
H htmlmasterdave Golden Member Jul 13, 2001 1,309 0 0 Feb 10, 2002 #3 Thanks a lot, seems to work perfectly EDIT: Now to figure out how to install this.... (gaim)
H Hyperblaze Lifer May 31, 2001 10,027 1 81 Feb 10, 2002 #4 Another quick and dirty way. tar -xzvf filename.tar.gz one step process!
H htmlmasterdave Golden Member Jul 13, 2001 1,309 0 0 Feb 10, 2002 #5 sweet, thanks again << Another quick and dirty way. tar -xzvf filename.tar.gz one step process! >>