- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Copy of Ftp
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
05-21-2006 09:35 PM
05-21-2006 09:35 PM
Copy of Ftp
I have some machines across diverse location.
I need to transfer some files of big size.
Generally they take 24 hours or so.
I have both provisions of copying and ftp as we have made some mount points.
Which thing will be faster and why?
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-21-2006 09:53 PM
05-21-2006 09:53 PM
Re: Copy of Ftp
I think you should copy rather than ftp as ftp will use UDP and hence there is no error checking/correction, whereas if you use copy it will use TCP and will be more reliable. As far as speed is oncerned , I dont see why there should be any difference, but yes there may be a slight delay in copying as for each file copying it will establish a session and then copy so the overhead of establishing the session for each file will be there as against the ftp session will be established once and all the files will be copied. So yes the copying may be a bit slower.
Regards,
Ninad
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-21-2006 09:58 PM
05-21-2006 09:58 PM
Re: Copy of Ftp
I agree with Ninad, but use gzip so that the file will be compressed more. Also my question is why not gzip & tar in one bundle and do a ftp. This will be good.
Chan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-21-2006 10:08 PM
05-21-2006 10:08 PM
Re: Copy of Ftp
And when are copying them across continents, the bandwidth is very low.
I am not concerned about error, just wanted the faster way :-)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-22-2006 12:02 AM
05-22-2006 12:02 AM
Re: Copy of Ftp
My small piece of advice would be - not to have a single file to be transferred. because you said it takes around 24 hrs to copy your 3GB file , and if the connection is lost for some reason you would have to copy the file right from the beginning. So 1st thing is to have logical tar.gz for say a group of file/directories.
Second thing is since you are copying across continents the file must be going through a lot of firewalls or do you have a secured network ? Does the ftp session be allowed for 24 hr period ? or is there a default timeout or so ? If yes then copying will be your option.
Isnt it worth while doing some testing to see practically how its working for your setup and network links - because I feel this erally depends on the above factors, your preference for reliability of data and network bandwidth and setup.
Regards,
Ninad
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-22-2006 12:07 AM
05-22-2006 12:07 AM
Re: Copy of Ftp
rsync using ssh is viable. It works for sites with lots of small files that don't change frequently.
First time a file is posted it takes some time to copy. After an initial run rysnc only moves changed files.
If you are talking big and ugly and the file needs to move often the answer is bandwidth.
If its faster to ship the file on cd fedex then you need a faster pipe.
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-22-2006 04:11 PM
05-22-2006 04:11 PM
Re: Copy of Ftp
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-22-2006 08:53 PM
05-22-2006 08:53 PM
Re: Copy of Ftp
you can also use scp that allow the online compression. It's afster than ftp and not so complex to use. Type man scp to set options you need.
HTH,
Art