- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- CPIO - copy Software to file - errno: 25, Can't wr...
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-08-2007 05:46 AM
10-08-2007 05:46 AM
I am using CPIO to copy the directory and file structure. but my filesystem keeps complaining that it is too large.
I have 13G og memory and 68G of hard Disk space. The creation of the file always stops at 2147483647.
Do I have enough resources to do this?
Is this file reporting 2 terabytes, if so I assume this is a problem because I can not accomodate resources ?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-08-2007 05:57 AM
10-08-2007 05:57 AM
Re: CPIO - copy Software to file - errno: 25, Can't write output
The 'cpio' utility does not support largefiles; i.e. those larger than 2GB. With patches, the standard HP-UX 'tar' or 'pax' utility handles files up to 8GB in size. Largefiles are intrinsicly supported by 'fbackup'.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-08-2007 06:27 AM
10-08-2007 06:27 AM
SolutionBecause you say you are backing up your Oracle software, I rather doubt that any single file is larger than 2GiB so all you really need to do is enable largefiles on the filesystem that you are writing your cpio image to.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-08-2007 06:43 AM
10-08-2007 06:43 AM
Re: CPIO - copy Software to file - errno: 25, Can't write output
As Clay noted, if your destination filesystem doesn't have 'largefiles' enabled you can't create files larger than ~2GB.
Verify your destintation filesystesm:
# mkfs -F vxfs -m /dev/vgNN/lvolX
...you will see either "nolargefiles" or largefiles" depending on the state of the largefiles bit.
To enable 'largefiles' if necessary:
# fsadm -F vxfs -o largefiles /dev/vgNN/rlvolX
...note the use of the raw device.
OR:
# fsadm -F vxfs -o largefiles /mountpoint
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-08-2007 06:59 AM
10-08-2007 06:59 AM
Re: CPIO - copy Software to file - errno: 25, Can't write output
Thanks a bunch. 10 points for you both!!
Millicent