|
|||||||
| Forums | Search Forums | Register | Forum Rules | Man Pages | Albums | FAQ | Members | Calendar | Search | Today's Posts | Mark Forums Read |
| AIX AIX is IBM's industry-leading UNIX operating system that meets the demands of applications that businesses rely upon in today's marketplace. |
|
|
|
Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
|
how to unzip wget-latest.tar.gz
I download wget-latest.tar.gz from Index of /gnu/wget, however, it saved in my windows as wget-latest.tar.tar
After I ftp it to aix server, #file wget-latest.tar.tar wget-latest.tar.tar: data or International Language text how to uzip it? ---------- Post updated at 04:13 PM ---------- Previous update was at 04:12 PM ---------- gzip -c wget-latest.tar.tar |tar xvf - tar: 0511-169 A directory checksum error on media; 0 not equal to 72165. |
| Sponsored Links | ||
|
|
#2
|
|||
|
|||
|
how about Code:
tar -x wget-latest.tar.tar |
| Sponsored Links | ||
|
|
#3
|
||||
|
||||
|
two ways: Code:
gunzip wget-latest.tar.gz tar xf wget-latest.tar or Code:
gzcat wget-latest.tar.gz | tar xf - edit: missed the tar.tar thing... try to download again. |
|
#4
|
|||
|
|||
|
I get that alot when I download source to compile. Just rename the .tar.tar to .tar.gz and it should then uncompress just fine. Code:
mv wget-latest.tar.tar wget-latest.tar.gz gzip -d wget-latest.tar.gz tar -xf wget-latest.tar |
| Sponsored Links | ||
|
![]() |
| Thread Tools | Search this Thread |
| Display Modes | |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| wget | mnmonu | Shell Programming and Scripting | 1 | 03-27-2009 11:32 AM |
| How to Unzip a .ZIP file in Unix without using unzip cmd..????? | sureshg_sampat | Shell Programming and Scripting | 5 | 11-15-2008 03:44 AM |
| Help with wget | vadharah | Shell Programming and Scripting | 2 | 03-30-2008 02:42 AM |
| help find wget, less, unzip source code | goldfish | UNIX for Dummies Questions & Answers | 4 | 03-04-2008 03:48 PM |
| How to Unzip a .ZIP file in Unix without using unzip cmd..????? | sureshg_sampat | HP-UX | 5 | 02-08-2007 09:01 AM |
|
|