|
|||||||
| Forums | Search Forums | Register | Forum Rules | Man Pages | Albums | FAQ | Members | Calendar | Search | Today's Posts | Mark Forums Read |
| UNIX for Dummies Questions & Answers If you're not sure where to post a UNIX or Linux question, post it here. All UNIX and Linux newbies welcome !! |
|
|
|
Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
|
I would like to confirm my file.tar is been tar-ed correctly before I remove them. But I have very limited disc space to untar it. Can I just do the listing instead of actual extract it? Can I say confirm folder integrity if the listing is sucessful without problem? Code:
tar tvf file1.tar Instead Code:
tar xvf file1.tar |
| Sponsored Links | ||
|
|
#2
|
||||
|
||||
|
tvf switch should suffice but you can always untar it to another machine via ssh in this manner.. Of course, you will need space on that other host. Code:
cat yourtar.tar | ssh newhost "cd /restorefolder && tar xvf -" |
| The Following User Says Thank You to Peasant For This Useful Post: | ||
vivien_chu (01-29-2013) | ||
| 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 |
| Extract particular folder from a .tar format files. | k_manimuthu | Emergency UNIX and Linux Support !! Help Me!! | 5 | 03-20-2011 03:01 PM |
| tar -cvf test.tar `find . -mtime -1 -type f` only tar 1 file | ahSher | UNIX for Dummies Questions & Answers | 2 | 04-02-2009 04:43 AM |
| extract tar.gz under a specific folder | melanie_pfefer | Solaris | 3 | 02-24-2009 09:20 AM |
| extract one file form .tar.gz without uncompressing .tar.gz file | balireddy_77 | Shell Programming and Scripting | 2 | 07-10-2007 04:23 AM |
| TAR - how to extract to different folder | hcclnoodles | UNIX for Dummies Questions & Answers | 2 | 10-26-2006 11:19 AM |
|
|