I noticed someone mentioning insane amounts of ram, and swap space. I worked on a server that had 16GB ram, and 32GB of swap, and noticed it crashed randomly every few weeks. Figured out the issue. <br>Linux, can build up a cache. Nothing like looking at a box and seeing 90% full and going damn. So I came up with a <b><i>stupid</i></b> script I run as a cron job, and I enjoy looking at how much is cached, and how much it clears it out. <br>
<br>Clear Cache from a linux box.<br>Works only with Kernels 2.6.16 or newer<br><br>sync; echo 3 &gt; /proc/sys/vm/drop_caches<br><br><br>Quick Script I use for the machine and cron jobs<br><br>Named: clean.sh<br>#!/bin/bash<br>
<br>###<br>### Shell script to clean the cache on the machine, it also lists current memory usage, and<br>### afterwards its cleared so I can compare.<br>###<br>###  SimonTek  April 16th, 2009<br>###<br>free -m<br>sync; echo 3 &gt; /proc/sys/vm/drop_caches<br>
free -m
    <br>