Monday, May 27, 2013

Install "android-tools" package (adb and fastboot) in Ubuntu 12.04, 11.10 or 11.04



adb is a tool used in Ubuntu to manage files in a android phone.You can access the file systems in your phone as administrator and it can send commands to phone almost like Ubuntu cd, ls, cat etc. You can install or Uninstall a application from our computer itself

fastboot is a command line tool that you can use to flash your file system of android phone over USB.

sudo add-apt-repository ppa:nilarimogard/webupd8
sudo apt-get update
sudo apt-get install android-tools-adb android-tools-fastboot
view raw gistfile1.sh hosted with ❤ by GitHub

after installation connect you phone to computer using USB cable and turn on the USB Debugging
in phone.

Then you can use adb to control your phone

adb shell
view raw gistfile1.sh hosted with ❤ by GitHub

this will guide you to a shell which is similar to a Linux shell 

while you are in the adb shell try

ls /system/bin/
view raw gistfile1.sh hosted with ❤ by GitHub


This will shows the commands that run in adb shell


3 comments:

  1. This comment has been removed by the author.

    ReplyDelete
    Replies
    1. What I was trying to say was this is the only tutorial that was easy / working I found for Ubuntu 12.04 LTS

      Thank you! Worked like a charm!

      Delete