Xavi Fustero <[EMAIL PROTECTED]> writes: > I do not success getting my cvs working on several RedHat 7.1 machines. > I have installed a CVS server on a RedHat 6.1 and it works properly. > >From several clients (Rhat 6.2) I can work fine, but when I try from a > RedHat 7.1 it start my problems. I can check out my project. After new > changes, I try to add these but I only get errors. > > >cvs add 'new_directory' > cvs [add aborted]: cannot open current directory: Value too large for > defined data type > >cvs ci 'project' > cvs [commit aborted]: cannot open current directory: Value too large for > defined data type
That error message corresponds to the Unix errno value EOVERFLOW. This was probably returned by one of the system calls fcntl, semctl or stat. Most of the stdio functions are capable of producing that error as well. I'm wondering if you have a very large (> 2Gb) file somewhere. Alternatively, are you using an old Linux kernel which doesn't support large files? Try using strace(8) to debug the problem. > I read through internet somebody who recomended to download the CVS src > and compile it with RedHat7.1. I did it but still do not work, I > download the last relase (RPM) but nothing ... > Does anybody have it working on RedHat7.1 ? > Thanks in advance, -- James Youngman Manchester, UK. +44 161 226 7339 PGP (GPG) key ID for <[EMAIL PROTECTED]> is 64A95EE5 (F1B83152). _______________________________________________ Info-cvs mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/info-cvs
