Android Debug Bridge (ADB) Command Options

Few useful adb commands :

adb devices – To list android devices

adb logcat – To take dump of the device debug information

adb remount – To remount the device in write mode

adb shell – To access the device shell

adb install – To install the application

adb push – To upload the filesystem to your device

adb pull – To download the filesystem from your device

adb start-server – To start adb server

adb kill-server – To stop adb server

Enabling Android USB Debugging in Fedora

To Enable USB Debugging, Enable it in the Android device by Applications–>Development–>Enable USB Debugging.

Then you need to add the following file (rule) to the udev rules directory :

su -
vi /etc/udev/rules.d/99-android.rules

Add the following code to this file :

SUBSYSTEM==”usb”,SYSFS{idVendor}==”04e8″,SYMLINK+=”android_adb”,MODE=”0666″

Here idVendor means your device vendor, so change it accordingly. For more details, refer this

http://developer.android.com/guide/developing/device.html

After saving this file, run this command to reload the udev rules.

udevcontrol reload_rules

After that, Everything will work!…