Operating System - HP-UX
1830935 Members
2002 Online
110017 Solutions
New Discussion

Moving large files with NFS.

 
SOLVED
Go to solution
matthew mills
Frequent Advisor

Moving large files with NFS.

I have two L2000 servers that have NFS mounts. I am trying to move some oracle DBF from one server to the other. I can ftp them from one server to the other but I can not copy them with the NFS mount. This is the error:
cp: cannot access /net/ngbva/oradata/VA/comp_temp_01.dbf: Value too large to be
stored in data type.

Thanks in advance.
5 REPLIES 5
James A. Donovan
Honored Contributor
Solution

Re: Moving large files with NFS.

Some versions of NFS cannot handle files larger than 2 GB. This could be the cause of your error.
Remember, wherever you go, there you are...
matthew mills
Frequent Advisor

Re: Moving large files with NFS.

where can I get a newer version of NFS for a HPUX L2000??
Steven E. Protter
Exalted Contributor

Re: Moving large files with NFS.

Upgrade NFS to the latest release.

This will fix the problem. Good policy says the same version of HP-UX NFS should be on all systems.

This is either on the application CD's or available at software.hp.com

SEP
Steven E Protter
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
Robert-Jan Goossens
Honored Contributor

Re: Moving large files with NFS.

Hi,

Check the latest NFS patch,

PHNE_29302 for 11.0

http://www4.itrc.hp.com/service/patch/patchDetail.do?BC=patch.breadcrumb.main|patch.breadcrumb.search|&patchid=PHNE_29302&context=hpux:800:11:00

Robert-Jan
Volker Borowski
Honored Contributor

Re: Moving large files with NFS.

Hi,

never use NFS for this, it is too slow.
Use a remote shell

dd if=/oradata/VA/comp_temp_01.dbf | remsh target_host dd of=/targetdir/comp_temp_01.dbf

Volker