VirtualBox 2.1

Although I have been a huge fan of VMWare Server I’m not apposed to alternatives. I’ve tried VirtualBox in the past with very little luck due to the Host Networking issues. However, it appears in the latest 2.1 version they have greatly improved on the...

MySQL – Move Database

Recently I had to move several MySQL databases around. I just wanted to make note of the commands here. mysqldump -uroot -p [DB_NAME] > file.sql mysql -uroot -p [DB_NAME] < source file.sql