Web related
Install databases apt-get install postgresql mysql-server Migrate mysql databases # on the original machine mysqldump -A --opt --password='nemo' --allow-keywords --flush-logs --hex-blob \ --max_allowed_packet=16M --quote-names > mysql.all.dat # on the new machine mysql -u root --password=xxxx < mysql.all.dat Migrate postgresql databases # on the original machine su - postgres -c 'pg_dumpall' > pg_all.dat # on the new machine su - postgres -c 'psql' < pg_all.dat Of course you will have to migrate the databases again just before moving to production but this is to test all applications work ok....