File size limit?

2005-01-15 Thread Shachar Shemesh
when executing the write: File size limit exceeded HOWEVER, when doing ulimit -a: core file size(blocks, -c) 0 data seg size (kbytes, -d) unlimited file size (blocks, -f) unlimited max locked memory (kbytes, -l) unlimited max memory size (kbytes, -m) unlimited

Re: File size limit?

2005-01-15 Thread Shachar Shemesh
Shachar Shemesh wrote: File system is reiserfs 3. I have tried running it also on a partition that has more than 4GB of free space. Does reiser not support large files? Thanks, Shachar Just to add one piece of info - create non-sparsed file using dd or echo of the same size does

Re: File size limit?

2005-01-15 Thread Dvir Volk
I'm using large files with -D_FILE_OFFSET_BITS=64 as a compiler flag, and that's it. i'm using open without any special flag, and without all the lseek64 calls, etc, even the sizeof off_t is 64bit automatically. guy keren wrote: On Sat, 15 Jan 2005, Shachar Shemesh wrote: I'm trying to make

Re: File size limit?

2005-01-15 Thread guy keren
On Sun, 16 Jan 2005, Dvir Volk wrote: I'm using large files with -D_FILE_OFFSET_BITS=64 as a compiler flag, and that's it. i'm using open without any special flag, and without all the lseek64 calls, etc, even the sizeof off_t is 64bit automatically. that's the second way to do it - but it's