Brandon,
Why not use external DNS? Also, look below for how to add SWAP ... My offer for resources still stands
Joe,
Increasing the size of the SWAP partition really wouldn't be an option, but you could add SWAP space. We had to do this on a client's server that literally blewup (traffic wise).
Create the file that we're going to turn into SWAP space
Replace xxxxxx with the size of the SWAP space you'd like to add.
Code:
# dd if=/dev/zero of=/dev/SwapFile bs=1024 count=xxxxxx
chmod the SWAP file for security purposes
Code:
# chmod 600 /dev/SwapFile
Make is SWAP
Code:
# mkswap /dev/SwapFile
Turn it on
Code:
# swapon /dev/SwapFile
Check amount of SWAP
And ... if you want it to mount on boot, add this to /etc/fstab
Code:
/dev/SwapFile swap swap defaults 0 0