Difference between revisions of "Motorola Moto G8 Power"

From Free Knowledge Base- The DUCK Project: information for everyone
Jump to: navigation, search
m
m
Line 14: Line 14:
  
 
* (Step 2 Expanded): Phone has to be connected to a network, wifi is sufficient, to enable OEM Ublocking
 
* (Step 2 Expanded): Phone has to be connected to a network, wifi is sufficient, to enable OEM Ublocking
 +
 +
=== Linux adb and fastboot ===
 +
Android Debug Bridge, aka ADB, is a tool that helps in sending basic Linux commands and a variety of Android Specific commands from PC to the connected Android devices.
 +
 +
In all, it is a versatile command line tool that allows you to communicate with a device.It is used to manage either an emulator instance or an actual Android device.
 +
 +
It is a part of the Android SDK and is made up of three components: A Client, a Daemon, and a server. It works when the device is powered on and booted into OS or Recovery.
 +
 +
FasttBoot is a tool that makes it possible for you to flash any partition on an Android device like system, recovery, Cache, boot, and other useful tasks.
 +
 +
With the help of this tool, you can flash the custom-built .img files via fastboot. It is a special diagnostic and engineering protocol that you can boot your Android device into.
 +
 +
While in Fastboot, you can modify the file system images from a computer over a USB connection. It also requires software from the Android SDK and different USB Drivers for Windows Computers.

Revision as of 18:13, 18 December 2020


Root

  1. Open Settings on your phone and go to About Phone. Tap 7 times on Build Number to enable Developer Options.
  2. Now go to Settings > System -> Advanced -> Developer Options and enable OEM Unlocking.
  3. Turn off your phone. Then press & hold Volume Down + Power button together
  4. When the Fastboot screen appears, release both buttons. Once the phone boot into Fastboot mode, connect Moto G8 Power to Computer.
  5. Go to C:\adb and replace C:\adb with CMD in the location field and press enter
  6. Now in the command window, enter the command 'fastboot oem get_unlock_data' to get unlock code
  7. It will display 5 line code. Copy the code and make it in one line, use notepad for convenience. Remember not to copy (bootloader) in case of windows and Info in case of Mac.
  8. Go to Motorola unlock page and click next and login with the Motorola account.
  9. Copy the one-line code that you just adjusted in Notepad and paste it in the Motorola unlock page.
  10. Then click on ‘Can my device be unlocked’ and after that click ‘Request Unlock Key’ (make sure to select I Agree).
  • (Step 2 Expanded): Phone has to be connected to a network, wifi is sufficient, to enable OEM Ublocking

Linux adb and fastboot

Android Debug Bridge, aka ADB, is a tool that helps in sending basic Linux commands and a variety of Android Specific commands from PC to the connected Android devices.

In all, it is a versatile command line tool that allows you to communicate with a device.It is used to manage either an emulator instance or an actual Android device.

It is a part of the Android SDK and is made up of three components: A Client, a Daemon, and a server. It works when the device is powered on and booted into OS or Recovery.

FasttBoot is a tool that makes it possible for you to flash any partition on an Android device like system, recovery, Cache, boot, and other useful tasks.

With the help of this tool, you can flash the custom-built .img files via fastboot. It is a special diagnostic and engineering protocol that you can boot your Android device into.

While in Fastboot, you can modify the file system images from a computer over a USB connection. It also requires software from the Android SDK and different USB Drivers for Windows Computers.