Skip to content

Daily Archives: November 14th, 2009

OpenDNS is a free DNS resolution service

14-Nov-09

OpenDNS is a free DNS resolution service OpenDNS nameserver IP addresses are: 208.67.220.220 208.67.222.222 Some routers and devices need a third or fourth nameserver IP address. Use these if necessary (identical service to the original two): 208.67.220.222 208.67.222.220 OpenDNS offers DNS resolution for consumers and businesses as an alternative to using their Internet service provider’s [...]

rsync all your home and mysql db to new server.

14-Nov-09

Some time you may want to backup your home directory and mysql databases to a new server, we can do that using rsync script. The below script when run from your new server will, rsync all your home dir to your new server. #!/bin/bash #by-admin@serversignature.com #Old Server IP IP=192.168.0.1 #Scrit is run from the new [...]