Find the answer to your Linux question:
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 ...
  1. #1
    Just 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

  2. #2
    oz
    oz is online now
    forum.guy
    Join Date
    May 2004
    Location
    arch linux
    Posts
    18,086
    Check this gzip page for info on using it:

    The gzip home page
    oz

    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.

  3. #3
    Just 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"

  4. #4
    Just 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

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •