1836636 Members
1909 Online
110102 Solutions
New Discussion

transfer data

 
SOLVED
Go to solution
matthew mills
Frequent Advisor

transfer data

I am trying to transfer a few large files from one HPUX server to another. I can not use ftp. I am using the â cp -r -p â command on a NFS mount. The error message I am getting is:
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
4 REPLIES 4
Jeff Schussele
Honored Contributor
Solution

Re: transfer data

Hi Matthew,

Does 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

PERSEVERANCE -- Remember, whatever does not kill you only makes you stronger!
Sridhar Bhaskarla
Honored Contributor

Re: transfer data

Hi,

Looks like the largefiles is not enabled on /VA filesystem on the remote server. Try enabling it.

-Sri
You may be disappointed if you fail, but you are doomed if you don't try
matthew mills
Frequent Advisor

Re: transfer data

100003 3 udp 0.0.0.0.8.1 nfs superuser
this is the version of NFS.

how do enable large file support?
Sridhar Bhaskarla
Honored Contributor

Re: transfer data

Hi,

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
You may be disappointed if you fail, but you are doomed if you don't try