[newbie] tar.gz.tar

2003-10-26 Thread Borys Radzyminski
Hi , Can anyone tell me which command i can unpack this file??? Greets Ya0 Want to buy your Pack or Services from MandrakeSoft? Go to http://www.mandrakestore.com

Re: [newbie] tar.gz.tar

2003-10-26 Thread Brian Parish
On Sun, 2003-10-26 at 18:19, Borys Radzyminski wrote: Hi , Can anyone tell me which command i can unpack this file??? Greets Ya0 Try: tar -xzvf the-tar-file-name x = extract z = unpack using gzip v = tell me what you are doing f = here's the file name HTH Brian Want to buy your Pack

Re: [newbie] tar.gz.tar

2003-10-26 Thread Rob Blomquist
On Sunday 26 October 2003 00:19, Borys Radzyminski wrote: Hi , Can anyone tell me which command i can unpack this file??? Interesting. Try running tar -x whatever.tar.gz.tar should generate whatever.tar.gz Then running tar -xvzf on whatever.tar.gz should unpack it as it is meant to be

Re: [newbie] tar.gz.tar

2003-10-26 Thread Derek Jennings
On Sunday 26 Oct 2003 7:27 am, Brian Parish wrote: On Sun, 2003-10-26 at 18:19, Borys Radzyminski wrote: Hi , Can anyone tell me which command i can unpack this file??? Greets Ya0 Try: tar -xzvf the-tar-file-name x = extract z = unpack using gzip v = tell me what you are doing