in reply to Net::FTP: file size limit on Linux?

If you can download the whole file on the command line, then the Linux kernel and glibc support files bigger than 2 GB. The problem is that version of Perl probably wasn't compiled large file support. It won't support files larged than 2 GB. In the 'perl -V' output look for any mention of 'uselargefiles'.

I am guessing you are using RHEL 2.1. RHEL 3 has a Perl with USE_LARGE_FILES compiled in. You might consider upgrading the OS. The other option is rebuilding Perl with that flag turned on.

  • Comment on Re: Net::FTP: file size limit on Linux?

Replies are listed 'Best First'.
Re: Re: Net::FTP: file size limit on Linux?
by jiewho (Novice) on Apr 09, 2004 at 22:43 UTC
    Thanks. Yes, the uselargefiles flag was undef. We will try to rebuild perl.