I\'ve got a cheap android tablet and I need to use it to test apps on it. I am using Ubuntu so I first have to add the device to udev list.
I connected the
some time you have to add it adb.ini (yes, even on linux) as well - I wrote this post for the kindle fire - but it should work for you too.
http://sentinelweb.co.uk/connecting-kindle-fire-to-adb-on-ubuntu/
I had same problem as you, what i done: Added vendor id to ~/.android/adb_usb.ini
echo "0x2207" >>~/.android/adb_usb.ini
Added the following lines to /etc/udev/rules.d/51-android.rules:
SUBSYSTEM=="usb", ENV{DEVTYPE}=="usb_device",
ENV{PRODUCT}=="207/*", MODE="0666"
SUBSYSTEM=="usb", SYSFS{idVendor}=="207", MODE="0666"
After making the above changes, restart the adb server and check the device again.
adb kill-server // kill the adb server if it is running
adb start-server // Restarts the adb server
adb devices // It will list all connected devices
Now my chinese tablet Archos c906 is recognize on ./adb device as:
List of devices attached
0123456789ABCDEF device
For all those having a tablet with ID 2207, these 2 links made it be visible.
First one is this one (http://clamel.netai.net/smartpad850i/enable_adb).
It will help you set such device up. If after this setup the tablet appears as ???????, then use the other link to make it visible.
The other link is here (http://ptspts.blogspot.com/2011/10/how-to-fix-adb-no-permissions-error-on.html).
If after system restart you lose the settings, then either repeat the same steps or simply restart udev service.