- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Best way to copy directories with big files (>8GB)
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
10-04-2004 03:59 AM
10-04-2004 03:59 AM
What is the best way to copy directories around
with large files (bigger than 8GB) on HP-UX 11.00
onwards on vxfs with largefiles support?
I would like to preserve
devs/links/perms/owner/times, etc.
All of tar/pax/cpio utilies seem to have
file size restrictions that prevent OOTB
operation and leave the big files behind.
Thank's & best Regards,
Arnold Sutter
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-04-2004 04:04 AM
10-04-2004 04:04 AM
Re: Best way to copy directories with big files (>8GB)
pax -rw olddir newdir
find . -xdev -print | cpio -pdmuv /targetdir
This shall be taking care of your query.
Also you can use fbackup, frecover combination for faster copy.
Thanks
Prashant
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-04-2004 04:04 AM
10-04-2004 04:04 AM
Re: Best way to copy directories with big files (>8GB)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-04-2004 04:11 AM
10-04-2004 04:11 AM
Re: Best way to copy directories with big files (>8GB)
http://software.hp.com/portal/swdepot/displayProductInfo.do?productNumber=T1471AA
scp -pr source destination
That will try to preserve permissions and do a recursive copy.
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
10-04-2004 04:12 AM
10-04-2004 04:12 AM
Re: Best way to copy directories with big files (>8GB)
cpio and ustar. Both seem to leave
big files behind (similar to vanilla
tar). Especially, files larger than
8GB were not copied.
On the other hand, fbackup/frecover
could be an alternative.
I usually use this command:
"cd /from; tar cf - . | (cd /to; tar xpf -)"
How would this command be translated
to fbackup/frecover?
Thank's again & Regards,
Arnold
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-04-2004 04:32 AM
10-04-2004 04:32 AM
Re: Best way to copy directories with big files (>8GB)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-04-2004 05:07 AM
10-04-2004 05:07 AM
Re: Best way to copy directories with big files (>8GB)
If between servers, then you would have to nfs mount.
Example:
vxdump -0 -f - -s 1000000 -b 16 /export/usr/sap/trans | (cd /mnt/usr/sap/trans ; vxrestore rf -)&
Rgds...Geoff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-04-2004 08:37 AM
10-04-2004 08:37 AM
Re: Best way to copy directories with big files (>8GB)
fbackup -f /dev/rmt/x
There are several options that can be used so check out the man pages
use frecover to retrieve the data.
Also sam has a backup utility which uses fbackup.
hope this helps
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-04-2004 09:07 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-04-2004 10:59 PM
10-04-2004 10:59 PM
Re: Best way to copy directories with big files (>8GB)
The following command worked for us with
reasonable performance, regardless of file
size:
# cd /source
# fbackup -f - -i . | (cd /dest; frecover -rXf -)
Best Regards,
Anrold Sutter