Operating System - HP-UX
1753797 Members
7164 Online
108799 Solutions
New Discussion юеВ

can't copy files with sizes (2306875392 bytes)

 
SOLVED
Go to solution
Abraham Lapuz
Occasional Advisor

can't copy files with sizes (2306875392 bytes)

I'm trying to copy files from one server to another.. and i always get this error:

The target file system does not support large files.

filesystem: vxfs (HP-UX)
command used: rcp
6 REPLIES 6
Ivan Krastev
Honored Contributor
Solution

Re: can't copy files with sizes (2306875392 bytes)

Look at this thread about largefiles option - http://forums1.itrc.hp.com/service/forums/bizsupport/questionanswer.do?threadId=1056373

cheers,
ivan
Ralph Grothe
Honored Contributor

Re: can't copy files with sizes (2306875392 bytes)

Either the target system's fileutil commands like cp require a largefiles patch,
or you could revert to commands such as fbackup and frestore (the manpage of the latter shows an example how to pipe the output of fbackup to frestore, which can be used the same way within an ssh or remsh connection.
Wheras if you wish to transfer whole filesystems you can use vxdump and vxrestore in the same fashion, provided source and target filesystems are both VxFS.

Madness, thy name is system administration
Fabian Brise├▒o
Esteemed Contributor

Re: can't copy files with sizes (2306875392 bytes)

Abraham.
check in your /etc/fstab file if the filesystem to where you are trying to copy the file supports large files.

which by the message its displayin it does not, you would have to make the filesystems able to support large files.

you can do this via command line or by SAM

Knowledge is power.
John Jimenez
Super Advisor

Re: can't copy files with sizes (2306875392 bytes)

Abraham Lapuz
Occasional Advisor

Re: can't copy files with sizes (2306875392 bytes)

Thanks guys for the replies.
It helped me a lot.

i used this command.

fsadm -F vxfs -o largefiles


God bless.
Abraham Lapuz
Occasional Advisor

Re: can't copy files with sizes (2306875392 bytes)

Many thanks.

Until then