Error : MD5 mismatch! while restoring backup using CWM

Checking MD5 sums... 
MD5 mismatch! 

If you are facing above error while restoring the backup using CMW then you can correct the error easily by using adb shell. 

Connect your mobile to computer and start adb shell else you can use the similar commands on terminal emulator as well. 

adb shell 
# cd /sdcard/clockworkmod/backup/2010-06-29.20.22.53 
# rm nandroid.md5 
# md5sum *img > nandroid.md5 

First traverse to the backup directory for which you are facing the error. Delete the existing md5 sum file( nandroid.md5). Now generate the new md5 sum for all image files in the same directory. And you are done. 

Now try to restore the backup.

No comments:

Post a Comment

Golang: Http POST Request with JSON Body example

Go standard library comes with "net/http" package which has excellent support for HTTP Client and Server.   In order to post JSON ...