Before starting the actual process, you need to have ADB (Android Debugging Bridge) and Fastboot installed on your system. ADB is a command-line based tool that allows a connection between your computer and an Android device. Fastboot is not really a tool but a protocol that allows system image modifications over a USB connection. Most rooting guides don’t really go into detail when it comes to installing ADB and Fastboot. For that reason, many rooting beginners immediatel feel lost and tend to give up. If you don’t have a clue how to set up ADB and Fastboot in order to root your device, then you’re in the right place. This guide will show you how to install these tools on both Mac OS X and Windows.

Get ADB and Fastboot on your computer with Android Studio

There are several ways to set up ADB and Fastboot. For beginners, the easiest way is to install Android Studio which includes all important SDK tools.

Installing Android Studio on Windows

Installing Android Studio on Mac OS X

How to use ADB and Fastboot in a command line tool

Now that you have the necessary SDK tools installed, you need to know how you can use them to connect to your Android device. All you need to do is start up a command line tool like Terminal on OS X or Windows’ Command Prompt and change into the directory where ADB and Fastboot are located. On Windows, you can simply have the platform-tools folder (located inside the sdk folder) open and make a right mouse click while holding down shift (shift + right click). Then select “Open command window here” which will fire up a command prompt window with the platform-tools directory selected. On Mac OS X, fire up a Terminal window. Now you need to change the directory to the platform-tools folder inside the sdk folder. To do that, type ‘cd’ followed by a space and then drag and drop the ‘platform-tools’ folder into the Terminal window. That will enter the exact path to the folder. Now, execute the command by hitting enter. It should look like in the screenshot below

With that setup, you should be able to access your Android device using ADB. To check if ADB itself is working correctly, try the following command: If you see something like “Android Debug Bridge version 1.0.32” then ADB was successfully installed. To check if you have a working connection to your Android device, execute the following line after enabling USB debugging in the developer settings on your device: This should display your device’s serial number together with the word “device”. Now, you’re ready to actually start rooting your device! I hope this guide was easy to follow and helped you get ADB and Fastboot set up. If you have any questions or issues, let us know in the comments!

How to install ADB and Fastboot on Mac OS X or Windows - 98