- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- transfer data
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-20-2004 08:16 AM
01-20-2004 08:16 AM
cp: cannot access /net/VA/compindex.dbf: Value too large to be stored in data type
cp: cannot /net/VA/comp_1.dbf: Value too large to be stored in data type
cp: cannot access /net/VA/comp_temp_01.dbf: Value too large to be stored in data type.
these are the file size:
3145736192 comp_1.dbf
2621448192 comp_temp_01.dbf
3145736192 compindex.dbf
Please
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-20-2004 08:30 AM
01-20-2004 08:30 AM
SolutionDoes the destination FS for these files support largefiles?
Also you want to insure that you're using NFS v3 on this mount as I seem to remember that v2 did not support files >2GB.
Run
rpcinfo on both client & server to determine NFS version running.
HTH,
Jeff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-20-2004 08:35 AM
01-20-2004 08:35 AM
Re: transfer data
Looks like the largefiles is not enabled on /VA filesystem on the remote server. Try enabling it.
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-20-2004 08:44 AM
01-20-2004 08:44 AM
Re: transfer data
this is the version of NFS.
how do enable large file support?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-20-2004 08:53 AM
01-20-2004 08:53 AM
Re: transfer data
You will need to do it on the remote server. If you have online-jfs installed on that server, you could do
fsadm -o largefiles /mount_point
If you don't have online-jfs, then you will need to umount the filesystem and then enable largefiles. /mount_point is the mount point containing the directory that is NFS exported.
umount /mount_point
fsadm -o largefiles /dev/vgxx/lvolx
/dev/vgxx/lvolx is the logical volume containing the filesystem.
mount /mount_point
-Sri