|
Hey Guys, that's what I tried to connect to Ubuntu.
I tried to connect Sonner on Ubuntu 9.10, command as following, and new problem is my Ubuntu can detect Sonner as 18d1:d00d, and when I run run ./adb devices, nothing listed, and sure that when I typed run ./adb shell, it said no devices found.
■Install Ubuntu Ubuntu
■The version of Ubuntu shouldn't matter. However, our Dev enviornment was tested with Ubuntu 8.10 Server
■Once Ubuntu is installed with the default settings we'll need to edit some system settings to allow the OS to talk with the Sooner Mobile Device.
■touch /etc/udev/rules.d/50-android.rules
■Add the line SUBSYSTEM=="usb", SYSFS{idVendor}=="18d1", MODE="0666" where 18d1 is the item listed under lsusb
■chmod a+rx /etc/udev/rules.d/50-android.rules
■Run this as root /etc/init.d/udev restart
■Java for Development
■apt-get install sun-java6-jdk
■apt-get install sun-java6-bin
■sudo update-java-alternatives -s java-6-sun
■Type java -version and javac -version
■It should state Java(TM). The output for javac will just list the version number.
■The Ubuntu OS should now be able to detect the device
■Plug the phone into the computer.
■Type lsusb
■Bus 002 Device 001: ID 0000:0000
■Bus 001 Device 012: ID 18d1:deed
■Bus 001 Device 002: ID 0e0f:0002
■Bus 001 Device 001: ID 0000:0000
■The device ID of 18d1 is the HTC Sooner Device
■Install the Google Android SDK
■From the Android SDK installation directory i.e. /android_sdk_linux_m3-rc22a/tools run ./adb devices
■It should list something similar to
1 53590a1587035cc9 device 0
■To access the Sooner Phone type ./adb shell
Spend all my money on electronics...
|