If you are using a RAID and your previous drive had problems, the best solution is installing from 0, since dd
don't understand damaged sectors, and could migrate them (with damaged data) to your new drive and cause problems thereafter.
Do a backup of your /home
directory, and restore all your data in the new drive. For having a list of all software/packages installed:
dpkg --get-selections > package_list
Then on your new system run:
sudo apt-get update && cat package_list | sudo dpkg --set-selections && sudo apt-get dselect-upgrade
With that, you will have a fresh copy of your system without possible problems that could cause the old one.