- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- ftp a tar file
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-11-2001 08:14 AM
11-11-2001 08:14 AM
I have a simple script something like:
tar cvf sf.tar $(find /pdir -name sf*.gif)
where my /pdir contains sf1.gif, sf2.gif, etc.
root:/#tar cvf sf.tar $(find /pdir -name sf*.gif)
a /pdir/sf1.gif 1 blocks
a /pdir/sf2.gif 1 blocks
a /pdir/sf3.gif 1 blocks
When I untar using tar xvf, I can see the 3 files are restored in my unix environment.
But when I ftp the sf.tar to my Windows PC, why is it when I used WinZip to unzip it gives me only the first file?
Thanks in advance..
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-11-2001 08:36 AM
11-11-2001 08:36 AM
Re: ftp a tar file
live free or die
harry
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-11-2001 09:46 AM
11-11-2001 09:46 AM
Re: ftp a tar file
You can not extract the tar file contents using windows winzip utility.
Thanks.
Prashant.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-11-2001 11:26 AM
11-11-2001 11:26 AM
Re: ftp a tar file
Tar and winzip are two totally different utilitites. You cannot unzip a unix tar file on nt. to untar a unix tar file download wintar from one of the links below,
http://www.freedownloadscenter.com/Utilities/Compression_and_Zip_File_Utilities/WinTAR_Remote.html
http://www.spiralcomm.com/dwnldsc1.html
http://www.greatfreeware.com/Utilities/Compression_and_Zip_File_Utilities/7928.html
Hope this helps.
Regds
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-11-2001 01:37 PM
11-11-2001 01:37 PM
SolutionI have WinZip 8.0 installed and it showed the contents of a patch tar file that I have on my PC for some reason. It looks correct when viewing the archive within WinZip and it is extracting the contents of the file correctly as well.
Do you have the latest version of WinZip installed? I'd give that a try.
I have also used CuteZip to successfully extract HP tar files.
http://www.cuteftp.com/products/cutezip/index.shtml
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-11-2001 06:17 PM
11-11-2001 06:17 PM
Re: ftp a tar file
Not only does Winzip 8.0 handle tar files, it handles gzipped tar files. I've not had a problem with it not listing all my files.
Is the problem occuring after you extract? If so, are you sure you're selecting extract all files?
Also, are you ftp'ing the tar file in binary mode?
Darrell
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-11-2001 09:56 PM
11-11-2001 09:56 PM
Re: ftp a tar file
I get the 3 files that I ftp!
Thank you for all the replies..