Thursday, July 30, 2015

Moto E, G, X - Unlock the Bootloader

Now the 1st step of rooting Android mobile is Unlocking the Boot-loader.

WARNING - Unlocking bootloader will void the warranty and erase all your data on phone.

1. Take the backup of all your data's from Mobile to computer or Cloud.
2. Install Android SDK manager or  Minimal ADB and Fastboot tool.
3. Install Motorola Device driver.
4. Now put your android mobile to fastboot flash mode. Click here for help.
5.Open command prompt on your PC and navigate to Android SDK manager or  Minimal ADB and Fastboot tool path.
6. Connect your Mobile to PC via USB cable.
7. Type following command in command prompt
       fastboot oem get_unlock_data
8. You will get a some string in 4 line. Copy the string in notepad and remove empty spaces make it single line.
9.  Now Create account in Motorola site here.
10.  Paste the string in text box and click on button 'Click my device be unlocked?'
11. After this 'Request unlock key' button will be displayed. Agree the term and condition.
12. You will receive a mail with YOUR_UNLOCK_KEY for your mobile.
13. Copy YOUR_UNLOCK_KEY from mail
14. In command prompt type following command -
      fastboot oem unlock <YOUR_UNLOCK_KEY>
15. Now wait for sometime and soon you will receive Bootloader unlocked

To relock you bootloader click here

No comments:

Post a Comment

Read CSV from S3

 import csv def count_records(csv_file):     record_count = 0     first_line = None     last_line = None     # Open the CSV file and read it...