Just got my Eken M001 out of the box this evening and am trying to get ADB to work. It's seen on the USB bus... linux$ lsusb -s 0001:005 Bus 001 Device 005: ID 040d:8510 VIA Technologies, Inc. ... and with the vendor ID, it's easy to create an entry to the udev definition: linux$ cat 51-android.rules SUBSYSTEM=="usb", SYSFS{idVendor}=="040d", SYMLINK+="android_adb"The symlink from /dev/android_adb to /dev is created when the M001 is plugged in.I have also changed the SYMLINK to MODE="0644" to get the media mounted.It's not as simple as going to "Settings > Applications > Development and make sure USB Debugging is on"Any gentle pointers; it is my first post.