├── .github └── FUNDING.yml ├── Command.png ├── README.md └── Termux-adb.jpg /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | ## Supported 4 | github: K3V1991 5 | 6 | ## Currently unsupported 7 | patreon: 8 | open_collective: 9 | ko_fi: 10 | tidelift: 11 | community_bridge: 12 | liberapay: 13 | issuehunt: 14 | otechie: 15 | lfx_crowdfunding: 16 | custom: 17 | -------------------------------------------------------------------------------- /Command.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K3V1991/Install-ADB-and-Fastboot-on-Android-Devices/dd59cda56b06e60217e0d40479b8bd84fdfd590d/Command.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |

2 |

Learn how you can execute ADB and Fastboot Commands on Android Phone and Tablet Devices

3 |
4 | 5 |

6 | 7 | 8 | 9 | 10 |

11 |
12 |
13 | 14 | ## NFO: 15 | ADB and Fastboot have become essential Tools for every Developer and advanced Android User nowadays. 16 | One of the main Advantages of using ADB or Fastboot in you can install System Updates, Custom ROMs, Boot Images, Custom Kernel and Applications as well. 17 | Let's say that your PC isn't working or maybe you are traveling and the PC available doesn't have ADB/Fastboot installed. 18 | This Guide here will show you how to install ADB and Fastboot on any Android Smartphone or Tablet, so can perform all the Activities you would on your PC. 19 | 20 | ## Requirements: 21 | * Rooted Android Phone or Tablet 22 | * [Termux](https://play.google.com/store/apps/details?id=com.termux) or [Terminal Emulator for Android](https://play.google.com/store/apps/details?id=jackpal.androidterm) 23 | * Root Explorer App (e.g: Root Explorer, Es File Explorer, MiXplorer) 24 | * [ADB and Fastboot Binaries](https://github.com/dingyi222666/termux-sdk-tools) thanks to [dingyi222666](https://github.com/dingyi222666) 25 | * OTG Cable (Make sure that your Device supports OTG) 26 |
27 | 28 | **[List of ADB and Fastboot Commands](https://github.com/K3V1991/ADB-and-FastbootPlusPlus/blob/main/Commands.txt)** 29 |
30 |
31 | 32 | ## Copy Binary Files to Device: 33 | * Root Explorer: Extract the downloaded ADB and Fastboot Files and copy the Contents to /system/bin Folder 34 | 35 | or 36 | 37 | * Terminal: 38 | 1. Download and extract the ADB and Fastboot Files on the Device (e.g: /sdcard/Download/) 39 | 2. Install and launch a Terminal App, type the following Commands in sequence: 40 | ``` 41 | su 42 | ``` 43 | Gains Root Priviledges 44 | ``` 45 | cd /sdcard/Download 46 | ``` 47 | Changes the working Directory to Download Folder 48 | ``` 49 | mount -o remount,rw /system 50 | ``` 51 | Remounts the System Partition 52 | ``` 53 | cp adb /system/bin/adb 54 | ``` 55 | ``` 56 | cp fastboot /system/bin/fastboot 57 | ``` 58 | Copys the adb and fastboot Files to the bin Folder 59 | 60 | ## Make the Files executable: 61 | ``` 62 | chmod 755 /system/bin/adb 63 | ``` 64 | ``` 65 | chmod 755 /system/bin/fastboot 66 | ``` 67 | 3. Type: ```su```, connect another Device using a OTG Cable and use ADB and Fastboot Commands 68 | 69 | ## Screenhot: 70 | 71 | -------------------------------------------------------------------------------- /Termux-adb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K3V1991/Install-ADB-and-Fastboot-on-Android-Devices/dd59cda56b06e60217e0d40479b8bd84fdfd590d/Termux-adb.jpg --------------------------------------------------------------------------------