- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- copy disk data CPIO: Value too large to be stored ...
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-17-2002 05:37 AM
10-17-2002 05:37 AM
I am trying to copy the data which is in /dump in vg03 to a dedicated vg: vg08. As /dump has largefiles enabled, I also enabled this for the new FS on vg08.
#fsadm -F vxfs -o /dump_temp
#find . -depth -print | cpio -pd /dump_temp
It comes back with the following output:
#"xxxxx.dmp": Value too large to be stored in data type
cpio: Size of xxxxx.dmp > 2GB. Not dumped.
Now, I am lost, I don't know what's causing it.
And yes, largefiles IS set.
Anybody?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-17-2002 05:40 AM
10-17-2002 05:40 AM
SolutionGet the gnu tar from
check here
https://www.beepz.com/personal/merijn/#Downloads
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-17-2002 05:41 AM
10-17-2002 05:41 AM
Re: copy disk data CPIO: Value too large to be stored in data type
http://hpux.cs.utah.edu/hppd/hpux/Gnu/tar-1.13.25/
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-17-2002 05:41 AM
10-17-2002 05:41 AM
Re: copy disk data CPIO: Value too large to be stored in data type
In HP-UX, the cpio and tar utilities have a 2Gb file size limit built in. You can copy files larger than 2Gb by using 'cp', or you can go grab a copy of the GNU cpio utility and use it.
JP
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-17-2002 05:44 AM
10-17-2002 05:44 AM
Re: copy disk data CPIO: Value too large to be stored in data type
You aare exceeding the limit in cpio and tar (2 gig), can you gzip the file and them cpio it?
Why not use cp to shift these files?
Paula
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-17-2002 05:45 AM
10-17-2002 05:45 AM
Re: copy disk data CPIO: Value too large to be stored in data type
It's a 25 GB Filesystem. I will just make a backup instead and restore it I suppose.