Download the SDK for Linux (or others) and extract.
- Create a file in /etc/udev/rules.d call 50-android.rules
- Edit the file and make it look like:
- SUBSYSTEM=="usb", ATTR{idVendor}=="04e8", MODE="0666"
- You will probably need to restart udev...this is distro dependant usually
- For example on ubuntu: sudo restart udev
- Go into the tools folder
- $ ./android
- Install the SDK tools and platform-tools
- Start the adb server by running adb start-server
In some cases you may have to start the server as root by doing sudo adb start-server. This may be remidied by modifying the above file to something like SUBSYSTEM=="usb", ATTR{idVendor}=="04e8", MODE="0666", OWNER="username" where username is your user name (although this did not help in my situation...)
No comments:
Post a Comment