Install ADB and Fastboot on Ubuntu 24.04 LTS

The Android Debug Bridge or ADB is the popular tool that is mainly used for the debugging of Android devices. Meanwhile, Fastboot is a communication protocol used for Android devices. It is included with the Android SDK package. In this tutorial, we will show you the easy and the quickest way to install ADB and Fastboot on Ubuntu 24.04 along with in other Linux based operating systems.

Install ADB and Fastboot on Ubuntu 24.04 LTS

For Ubuntu and it’s derivatives:

Run the following command to install ADB and Fastboot on Ubuntu 24.04 LTS:

sudo apt install adb fastboot

For Fedora Linux:

Run the following command to install ADB and Fastboot on Fedora Linux:

sudo dnf install android-tools

For Arch Linux:

Run the following command to install ADB and Fastboot on Arch Linux:

sudo pacman -S android-tools

Now, Run the following command to check the version of ADB and Fastboot that you have installed in your Ubuntu and other Linux.

adb --version

 

Leave a comment

Your email address will not be published. Required fields are marked *