Re: SoC: Distributed Audit Daemon project

2007-05-25 Thread Giorgos Keramidas
On 2007-05-25 03:22, Alexey Mikhailov <[EMAIL PROTECTED]> wrote: > Hello! Hi Alexey :) > http://wiki.freebsd.org/DistributedAuditDaemon > [...] > Consider this picture ( Yes, I know that my ASCII art sucks :-) ) > > '` '-` > |

Re: Maximum data size

2007-05-25 Thread Ivan B. Serezhkin
Daniel Valencia wrote: Hi all, I am trying to allow a program to use more than 512MB of memory (specifically a little over 1GB), but I can't seem to be able to. I tried with ulimit -d 2097152, but when I check back again (immediately after setting it), it reads "data seg size (kbyte

Re: Maximum data size

2007-05-25 Thread Brian Hourigan
Daniel, I use these options in my kernel for 1GB: options MAXDSIZ="(1024*1024*1024)" options MAXSSIZ="(1024*1024*1024)" options DFLDSIZ="(1024*1024*1024)" See http://lists.freebsd.org/pipermail/freebsd-questions/2004-August/056890.html - Brian On Fri, 25 May 2007, Da

Re: Maximum data size

2007-05-25 Thread Daniel Valencia
Hey, thanks a lot!! that was it - Daniel - Original Message From: Stephen Montgomery-Smith <[EMAIL PROTECTED]> To: Daniel Valencia <[EMAIL PROTECTED]> Sent: Friday, May 25, 2007 11:11:29 AM Subject: Re: Maximum data size Daniel Valencia wrote: > Hi all, > > I am trying to allow a prog

Re: Maximum data size

2007-05-25 Thread Steve Kargl
On Fri, May 25, 2007 at 10:36:24AM -0700, Daniel Valencia wrote: > > I am trying to allow a program to use more than 512MB of memory > (specifically a little over 1GB), but I can't seem to be able to. > I tried with ulimit -d 2097152, but when I check back again (immediately > after setting it), i

Re: SoC: Distributed Audit Daemon project

2007-05-25 Thread Benjamin Lutz
On Friday 25 May 2007 01:22:21 Alexey Mikhailov wrote: > [...] > 2. As I said before initial subject of this project was "Distributed > audit daemon". But after some discussions we had decided that this > project can be done in more general maner. We can perform distributed > logging for any user-s

Maximum data size

2007-05-25 Thread Daniel Valencia
Hi all, I am trying to allow a program to use more than 512MB of memory (specifically a little over 1GB), but I can't seem to be able to. I tried with ulimit -d 2097152, but when I check back again (immediately after setting it), it reads "data seg size (kbytes, -d) 524288" (again).

Re: SoC: Distributed Audit Daemon project

2007-05-25 Thread Martin Englund
Hi Alexey! I think your project would be beneficial to both FreeBSD & OpenSolaris. Tomas Zeman is working on a similar thing for OpenSolaris, and I think it would be very good if you could use the distributed audit daemon to gather audit trails from both operating systems! On May 25, 20

A sendfile(2) extension module.

2007-05-25 Thread Weongyo Jeong
Hello. I have written a simple sendfile(2) extension module which supports a transfer from a stream socket to a stream socket. For details, you can check the below URL: http://weongyo.org/project/freebsd/sendsock/ I don't know that it is useful but I think that it is helpful when you have a pl