- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Ftp problem - Using split???
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
01-10-2008 09:35 AM
01-10-2008 09:35 AM
We are trying to download a lot of data across the internet from another server. The files are generally around 90GB in size and the sessions are regularly timing out midway through the transfer. We are simply using ftp for this. Is using split an option to make the files more manageble. Also when you have used split on a file how do you then re-create it at the other end. I expected the man page to tell me this.
Cheers
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-10-2008 10:56 AM
01-10-2008 10:56 AM
Solutioncat part1 part2 part3 > whole
Or one part at a time:
mv part1 whole
cat part2 >>whole
rm part2
cat part3 >>whole
rm part3
Maybe the manual writer thought it was too simple to be worth mentioning...
MK
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-10-2008 12:23 PM
01-10-2008 12:23 PM
Re: Ftp problem - Using split???
on the souce machine split the file by split command .eg
split -b 1024000k filename
above command creates 1gb files
ftp them ;
on the target
cat x* > filename
Hasan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-10-2008 04:49 PM
01-10-2008 04:49 PM
Re: Ftp problem - Using split???
You already got an advice about splitting the large file.
Some additional options to consider:
a) Why not compress the files before
sending via FTP (gzip, or even better bzip2).
The idea is to decrease the total
amount of data sent over the network.
b) Replace FTP with RSYNC (with, or without
SSH support). It is a more efficient
protocol for file synchronization between
sites.
Cheers,
VK2COT
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-11-2008 02:48 AM
01-11-2008 02:48 AM
Re: Ftp problem - Using split???
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-11-2008 07:00 AM
01-11-2008 07:00 AM
Re: Ftp problem - Using split???
What I meant is, it's probably obvious to HP's Unix shell wizards who wrote the documentation of HP-UX commands.
MK