The out-of-memory tag has no wiki summary.
2
votes
2answers
44 views
Why is scdaemon ballooning out of control?
My system keeps getting wedged because an scdaemon process has been spawned that has grown to consume all free memory on the computer. (I do not use, and have never used, smart cards in the vicinity ...
0
votes
1answer
28 views
RedHat / CentOS 5.5 background process has restricted memory
I run Fisheye that uses Java for Linux. Settings go like this:
generate options
FISHEYE_OPTS=`$JAVACMD -Xms100m -Xmx200m -cp $FISHEYE_HOME/fisheyeboot.jar com.cenqua.fisheye.boot.OptsSetter`
build ...
4
votes
2answers
68 views
Out of memory while using sed with multiline expressions on giant file
I am currently trying to remove all newlines that are not preceded by a closing parenthesis, so I came up with this expression:
sed -r -i -e ":a;N;$!ba;s/([^\)])\n/\1/g;d" reallyBigFile.log
It does ...
3
votes
2answers
279 views
How to set OOM killer adjustments for daemons permanently?
Running some Linux servers with single or just a few vital system service daemons, I would like to adjust the OOM killer for those daemonized processes in case something odd happens. For example, ...