Ftp Download Problem

FROM WINDOWS , WHILE GETTING DATA FROM HP-UNIX SERVER USING FTP, I AM ABLE TO GET DATA ONLY LESS THAN 4GB FILE, PLZ HELP ME HOW TO GET MORE MORE THAN 4GB FILE.

I don't think that ftp has the largefile handling capabilities. Atleast the ftp that we have does not transfer bytes above 2 GB - it stops after that. You may have to look at other options.

For instance, the 64bit version of OpenSSH sftp *may* be useful here. We use NDM-Connect Direct to transfer files between our systems.

Thank You Very much Mr. Blowtorch

i have no much knowledge about unix, please give me some more about NDM-connect direct, if possible give the URL

NDM-Connect Direct is not free for download. You would have to purchase this. You can check this link if you want more info about that.

Or u could just split up the bigfile into pieces of 2gb

split -b2048m bigfile

and re-assemble them after transfer

cat xa* >> bigfile