- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- SCP the big file <80 GB [Urgent]
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
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
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-17-2007 08:57 AM
тАО05-17-2007 08:57 AM
SCP the big file <80 GB [Urgent]
I need to transfer the tar file which is in size of 80GB from one unix server to another using SCP . After 100% completion its giving error file size too large , please give a short and faster why to transfer it.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-17-2007 09:05 AM
тАО05-17-2007 09:05 AM
Re: SCP the big file <80 GB [Urgent]
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-17-2007 09:21 AM
тАО05-17-2007 09:21 AM
Re: SCP the big file <80 GB [Urgent]
Thanks for your quick reply , There is no error its bcas of zise only it gets failed , I dont have facility to do ftp and nfs activities.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-17-2007 09:27 AM
тАО05-17-2007 09:27 AM
Re: SCP the big file <80 GB [Urgent]
~hope it helps
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-17-2007 09:43 AM
тАО05-17-2007 09:43 AM
Re: SCP the big file <80 GB [Urgent]
On source host:
split -b 1024m mybigfill /aaa/bbb/mbf
This will split your 80GiB file into 1GiB files /aaa/bbb/mbfaa, /aaa/bbb/mbfab, /aaa/bbb/mbfac ...
Now scp these /aaa/bbb/mbf* files to the destination host.
On destination host:
cat /aaa/bbb/mbf* > mybigfile
Man split for details. Split will avoid the all your eggs in one basket problem.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-18-2007 04:33 AM
тАО05-18-2007 04:33 AM
Re: SCP the big file <80 GB [Urgent]
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-27-2007 05:58 PM
тАО05-27-2007 05:58 PM
Re: SCP the big file <80 GB [Urgent]
U check out as rick said on target machine whether largefilesystem option is enabled or not...by
mksf -m /filesystem command...and then try....