- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: .tar files > transferring between HPUX & Windo...
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
Discussions
Discussions
Discussions
Forums
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
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
тАО05-10-2005 11:30 PM
тАО05-10-2005 11:30 PM
When Downloading a .tar file from the net on a machine using windows XP, then trying to write to a CD to copy over to a Unix machine, I get the following error.
The tar file changes I.E. if I have say HP_LTT23S4_HPUX.tar downloaded on my windows machine. When I write to cd, then load the CD into the unix machine. The file comes out as: HP_LTT~1.TAR;1 - I have tried the cp command which fails using both file names. Extracting the file also fails using the Tar -xvf command. What my guess is, is that XP is changing the format of the file becuase it doesn't recognise it? I've seen problems like this in the past where you have a check box to make sure your file stays binary or something like that? I'm pretty stumped here.
I've tried this with HP servers throughout the range and all the range of O/S's. I've also tried it on a whole string of IBM and SUN machines. I've tried 4 different CD writer packages and different PC's. The only thing that has remainied the same is the O/S that the file is being downloaded to I.E. Windows XP. Can anyone help?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-10-2005 11:43 PM
тАО05-10-2005 11:43 PM
Solution(1) Always change the "file type" to "all files" when downloading. Otherwise windows will screw with the file format.
(2) You are creating the wrong type of CD or mounting it incorrectly. Try mounting with ISO9660 format.
If you are only transfering between XP and HP-ux then use this at a command prompt on your XP box:
rcp -b filename HPuxboxname.root:/path2putITin
live free or die
harry d brown jr
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-11-2005 12:04 AM
тАО05-11-2005 12:04 AM
Re: .tar files > transferring between HPUX & Windows XP
On the unix machines, you have a number of choices on how to mount a cd.
The standard mount for the cdrom in /etc/fstab will not work right on most windows cd.
You have to try something else.
Diagnostics:
fstyp -v /dev/dsk/cxtxdx (cdrom device)
mount -F iso9660 -o cdcase /dev/dsk/cxtxdx /mount_point
mount -o cdcase /dev/dsk/cxtxdx /mount_point
One of these should work.
Fromthe post:
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=842387
Just so nobody thinks I'm the author.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-11-2005 12:15 AM
тАО05-11-2005 12:15 AM
Re: .tar files > transferring between HPUX & Windows XP
this is usually a problem with the mount options. Check the mount command for CD specific options (-o cdcase could do the trick in this case).
You might also try to create the CD in a format that HP-UX supports better. e.g. without any extensions like the Windows Jouliet (written correctly ??) format.
Also if you have to transfer files frequently you could open a samba share on one of your servers just for some admin users.
We have a share available on one server (which is not so important) an use this to transfer from UNIX to Windows world. Once the files are somewhere on a HP-UX system you can use rcp, mount and so on.
Hope this helps
Regards Stefan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-11-2005 12:19 AM
тАО05-11-2005 12:19 AM
Re: .tar files > transferring between HPUX & Windows XP
LOL!! :)))
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-11-2005 01:26 AM
тАО05-11-2005 01:26 AM
Re: .tar files > transferring between HPUX & Windows XP
thanks again,
Ewan