How to Install ADB and Fastboot and Their Uses and How to OEM Unlock Your Device

How to  Install ADB and Fastboot and Their Uses and How to OEM Unlock Your Device
How to  Install ADB and Fastboot and Their Uses and How to OEM Unlock Your Device

install adb and fastboot,linux install adb and fastboot,download and install adb and fastboot,install adb and fastboot ubuntu
Today, we will explain the Android Debug Bridge (ADB and Fastboot ) with and ways to download and install them on your computer and use them and the most important codes that are used and how to unlock the OEM lock of your phone
How to  Install ADB and Fastboot and Their Uses and How to OEM Unlock Your Device

How to  Install ADB and Fastboot and Their Uses and How to OEM Unlock Your Device


- What is ADB?

It is a program that enters programming commands through a command line program in the computer system to perform tasks through which the Android mobile phone is controlled . Kit (SDK). It can be installed to run on various computer systems such as Windows , Macintosh and Linux systems, and here I will explain how to install it for Windows since it is the most popular operating system and many users use this system.

-What is Fastboot?

It is a tool dedicated to modifying Android system files from the computer through simple and easy codes that are written when the phone is connected to the computer and the phone is in bootloader mode . Or update the system or make a backup … and many other development processes
Before you start explaining the download and installation methods, you must know that your computer will not recognize your phone in bootloader mode without installing the drivers for your phone, which

you can get from the official website of the manufacturer of your phone

-Download ADB and Fast boot from here

If you have trouble running ADB and Fastboot, install this tool from here

-Install ADB and Fast boot

After downloading the file, decompress it and open the file

The window that appears when opening an ADB and Fastboot file
When this window appears, agree to the installation by typing the letter Y and then pressing the Enter button

When it is finished, the window will automatically close and you will find a new folder called adb located in the C partition for Windows files

how to install adb and fastboot on windows,download and install adb and fastboot on windows,

Before you connect your phone to the computer, you must activate the USB debugging mode on the phone by following the following steps

How to  Install ADB and Fastboot and Their Uses and How to OEM Unlock Your Device
setting > about phone > build number
Settings > About phone > Build number
and tap it 7 times to become a developer
how to install adb and fastboot on android,install adb and fastboot in termux,
How to  Install ADB and Fastboot and Their Uses and How to OEM Unlock Your Device
setting > developer option > usb debugging
> developer options > usb debugging

Now your phone is ready, connect it to your computer

Open ADB and Fastboot by going into their folder and pressing shift with the mouse button

How to  Install ADB and Fastboot and Their Uses and How to OEM Unlock Your Device
Then choose open command window here

-Then ADB and fastboot cmd window will open

Most used FASTBOOT commands:

#Display or show the list of Android devices connected to the computer.

adb devices

#Entering the bootloader or fastboot mode.

adb reboot bootloader

#Entering recovery mode.

adb reboot recovery

#Reboot the device to fastboot mode directly.

adb reboot fastboot

#fastboot reboot bootloader Reboot the device from fastboot mode to fastboot mode again.

fastboot reboot bootloader

#Flash the Zip file via fastboot mode (ABC.zip is the file name).

fastboot flash ABC.zip

#Flash recovery file (ABC.img is a recovery file or image).

fastboot flash recovery ABC.img

#Flash kernel file (ABC.img is the name of the kernel file).

fastboot flash boot ABC.img

#Unlock the device's bootloader.

fastboot oem unlock

#Turn off the bootloader of the device.

fastboot oem lock

#Reboot the device.

adb reboot

Most used ADB commands:

#View connected Android devices.

adb devices

#Install apk files or apps.

adb install

#Transfer a file from the device to the system.

adb pull

#Transfer a file from the system to the device.

adb push

#Display the serial or serial number of the device.

adb get-serialno

#Show device status

adb get-state

#Show the time remaining to move to the next command.

adb wait-for-device

#Run adb server.

adb start-server

#stop adb server

adb kill-server

#Run the shell command line of your Android device to control the device from the inside.

adb shell

#View adb help file.

adb help

These were the most important commands you can use with ADB and Fastboot

Important note, you will not be able to install any modified ROM, modified recovery, or root your phone unless you unlock the OEM lock of your phone
How to  Install ADB and Fastboot and Their Uses and How to OEM Unlock Your Device
Enable these options first from the developer settings

Then connect your phone to the computer and open ADB and Fastboot and write the code “adb reboot bootloader” until the phone opens the bootloader mode

-Then write the code “fastboot oem unlock” then the phone will unlock the oem

Then write the “adb reboot” code to restart the device again in normal mode

Warning: When unlocking your oem your phone will reformat the phone and erase all your files and apps so you should back up your apps
Comments