Messages in this thread |  | | Date | Sun, 17 Sep 2000 11:51:02 +1200 | From | Chris Wedgwood <> | Subject | Re: Very aggressive swapping after 2 hours rest |
| |
On Sat, Sep 16, 2000 at 04:59:41PM +0200, Dietmar Kling wrote:
My Machine has 256 MB of memory I left it for two hours ( several Netscapes -Instances, Mail and xmms running _nothing in swap_ )
How large was Netscape at this point? I find it's a horrible application that leaks like a sieve at times so I always wrap it with something like the attached script.
--cw #!/bin/bash
export MOZILLA_HOME=/usr/local/netscape export LD_LIBRARY_PATH=/usr/local/netscape/lib
# netscape should normally not use this much memory # if it does, something is leaking...
ulimit -v 40960
# sigh, netscape dumps core often
ulimit -c 0
/usr/local/netscape/netscape $*
|  |