Results 1 to 4 of 4
I have just got a ta.gz file form the internet. Its a dictionary for php code words. Its in a tar.gz file. What would I type into the terminal to ...
- 05-09-2008 #1Just Joined!
- Join Date
- May 2008
- Posts
- 21
How do you unzip a tra.gz file
I have just got a ta.gz file form the internet. Its a dictionary for php code words. Its in a tar.gz file. What would I type into the terminal to unzip it.
I unzipped an apache server but that was using some dos language that seemed very specific. I think its just a series of html files. It was probably so basic that they did not give any instructions on how to unzip it.
lets just say that the file name is phpinfo.tar.gz
- 05-09-2008 #2forum.guy
- Join Date
- May 2004
- Location
- arch linux
- Posts
- 18,086
Check this gzip page for info on using it:
The gzip home pageoz
→ new members/users: read this first | new member faq
→ no private messages requesting computer support - post them on the forums!
→ please use the "report post" button to alert our forum admins to problematic posts rather than responding to them yourself.
- 05-09-2008 #3Just Joined!
- Join Date
- May 2008
- Posts
- 7
You can also extract the files with tar. Type "man tar" in your terminal for further information; the most common way is probably "tar xvf archive.tar.gz"
- 05-10-2008 #4Just Joined!
- Join Date
- Mar 2006
- Posts
- 7
Try
tar zxvf phpinfo.tar.gz
You need "z" for gz files while 'j' for "bz2" type of files


Reply With Quote
