public inbox for speakup@linux-speakup.org
 help / color / mirror / Atom feed
* TGZ Files
@  Rejean Proulx
   ` Gregory Nowak
                   ` (3 more replies)
  0 siblings, 4 replies; 7+ messages in thread
From: Rejean Proulx @  UTC (permalink / raw)
  To: speakup

How do I unzip a tgz file?  I found a potential raid reconfig tool and I
want to play with it under my user id very carefully before I go at my
system in root.

 Rejean Proulx
Visit my family at http://interfree.ca
MSN is: rejp@rogers.com
Ham License VA3REJ




^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: TGZ Files
   TGZ Files Rejean Proulx
@  ` Gregory Nowak
   ` Adam Myrow
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 7+ messages in thread
From: Gregory Nowak @  UTC (permalink / raw)
  To: speakup

Try:

tar zxpf filename.tgz

Hth.

Greg


On Tue, Oct 07, 2003 at 10:13:01PM -0400, Rejean Proulx wrote:
> How do I unzip a tgz file?  I found a potential raid reconfig tool and I
> want to play with it under my user id very carefully before I go at my
> system in root.
> 
>  Rejean Proulx
> Visit my family at http://interfree.ca
> MSN is: rejp@rogers.com
> Ham License VA3REJ
> 
> 
> 
> _______________________________________________
> Speakup mailing list
> Speakup@braille.uwo.ca
> http://speech.braille.uwo.ca/mailman/listinfo/speakup

-- 
Free domains: http://www.eu.org/ or mail dns-manager@EU.org



^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: TGZ Files
   TGZ Files Rejean Proulx
   ` Gregory Nowak
@  ` Adam Myrow
   ` Luke Davis
   ` Alex Snow
  3 siblings, 0 replies; 7+ messages in thread
From: Adam Myrow @  UTC (permalink / raw)
  To: speakup

Either the easy way or the hard way.

The easy way is "tar xzvf file.tgz."  The "x" means extract, the "v" means
to list the files as they are extracted, and can be left off if desired,
the "z" means run gunzip on the file as well, and the "f" tells the
filename.  The hard way which would work on a system which has a very old
version of tar that doesn't understand the z option would be
gunzip -c file.tgz | tar xvf -
This does the exact same thing.



^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: TGZ Files
   TGZ Files Rejean Proulx
   ` Gregory Nowak
   ` Adam Myrow
@  ` Luke Davis
     ` Gregory Nowak
   ` Alex Snow
  3 siblings, 1 reply; 7+ messages in thread
From: Luke Davis @  UTC (permalink / raw)
  To: speakup

The -z switch to tar will do it, or the gunzip command.  Say you start
with "test.tar.gz", you could do:

gunzip test.tar.gz

In which case you will get "test.tar".  You could drop this step, however,
by doing:

tar -xzf test.tar.gz

Or:

tar -xzvf test.tar.gz

You will then get the expanded contents of the tar.

A ".tgz" file, is just a ".tar.gz" file, with a shorter name.


On Tue, 7 Oct 2003, Rejean Proulx wrote:

> How do I unzip a tgz file?  I found a potential raid reconfig tool and I
> want to play with it under my user id very carefully before I go at my
> system in root.
>
>  Rejean Proulx
> Visit my family at http://interfree.ca
> MSN is: rejp@rogers.com
> Ham License VA3REJ
>
>
>
> _______________________________________________
> Speakup mailing list
> Speakup@braille.uwo.ca
> http://speech.braille.uwo.ca/mailman/listinfo/speakup
>

-- 
Want a free month of internet access on a great ISP?  Go here:
http://www.tacticus.com/net/


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: TGZ Files
   ` Luke Davis
@    ` Gregory Nowak
       ` Luke Davis
  0 siblings, 1 reply; 7+ messages in thread
From: Gregory Nowak @  UTC (permalink / raw)
  To: speakup

On Tue, Oct 07, 2003 at 11:33:57PM -0500, Luke Davis wrote:
> A ".tgz" file, is just a ".tar.gz" file, with a shorter name.

A tgz file is also a slackware package.

Greg


-- 
Free domains: http://www.eu.org/ or mail dns-manager@EU.org



^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: TGZ Files
     ` Gregory Nowak
@      ` Luke Davis
  0 siblings, 0 replies; 7+ messages in thread
From: Luke Davis @  UTC (permalink / raw)
  To: speakup

Eh?  A joke?

On Tue, 7 Oct 2003, Gregory Nowak wrote:

> On Tue, Oct 07, 2003 at 11:33:57PM -0500, Luke Davis wrote:
> > A ".tgz" file, is just a ".tar.gz" file, with a shorter name.
>
> A tgz file is also a slackware package.
>
> Greg
>
>
>

-- 
Want a free month of internet access on a great ISP?  Go here:
http://www.tacticus.com/net/


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: TGZ Files
   TGZ Files Rejean Proulx
                   ` (2 preceding siblings ...)
   ` Luke Davis
@  ` Alex Snow
  3 siblings, 0 replies; 7+ messages in thread
From: Alex Snow @  UTC (permalink / raw)
  To: speakup

Hi. You do something like
tar xvzf file.tgz

----- Original Message ----- 
From: "Rejean Proulx" <rejean@interfree.ca>
To: <speakup@braille.uwo.ca>
Sent: Tuesday, October 07, 2003 9:13 PM
Subject: TGZ Files


> How do I unzip a tgz file?  I found a potential raid reconfig tool and I
> want to play with it under my user id very carefully before I go at my
> system in root.
> 
>  Rejean Proulx
> Visit my family at http://interfree.ca
> MSN is: rejp@rogers.com
> Ham License VA3REJ
> 
> 
> 
> _______________________________________________
> Speakup mailing list
> Speakup@braille.uwo.ca
> http://speech.braille.uwo.ca/mailman/listinfo/speakup
> 



^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~ UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
 TGZ Files Rejean Proulx
 ` Gregory Nowak
 ` Adam Myrow
 ` Luke Davis
   ` Gregory Nowak
     ` Luke Davis
 ` Alex Snow

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).