[android-developers] Re: how to use adb tool on SAMSUNG GALAXY?
My mini howto works with ubuntu. Maybe the udev rule is not needed or must be different for open suse. Please read the docs at http://developer.android.com/intl/de/guide/developing/device.html and search the web for developing android under open suse. You just have to change two things to make it work with the galaxy: change the vendor id in the udev rule (if there is any) to 04e8 and use the patched adb binary from my previous post. If you make it work please post it here. good luck On 23 Jul., 16:17, Xionbox wrote: > Hi, > > I'm trying to use the Samsung Galaxy on OpenSuSE 11.1 (Linux). I add > the following line to /lib/udev/rules.d/50-udev-default.rules > SUBSYSTEM=="usb" SYSFS{idVendor}=="04e8", MODE="0666" > I also created /etc/udev/rules.d/51-android.rules which has the exact > same line. > I also updated adb via "android update adb" and then I restarted the > adb server. Even after upluging and repluging several times adb still > doesn't list the device. > > Any idea on how the rule should be? > Thanks in advance. > > On Jul 21, 1:21 am, Olaf Geibig wrote: > > > Quick Howto for ubuntu: > > > - download SDK 1.5 r3 > > - enable debug mode on the device: Settings -> Applications -> > > Development -> USB debugging > > - add udev rule:http://developer.android.com/intl/de/guide/developing/ > > device.html but use Samsung's vendor id instead: SYSFS{idVendor} > > =="04e8" > > - replace the adb binary by this > > one:http://floe.butterbrot.org/external/adb.gz > > - to use ddms on a 64 bit > > system:http://coffeecokeandcode.blogspot.com/2009/07/ddms-on-ubuntu-64bit.html > > > Patched adb thanks to Flori7500 as mentioned in my previous post. > > > Cheers, Olaf > > > On 18 Jul., 21:13, fexpop wrote: > > > > Hi, > > > > on my device the build number is 76XXCSDCBALUM6375. It won't be found > > > by adb, neither on Windows nor on Linux. > > > > Regards, > > > > Felix > > > > On Jul 18, 8:50 pm, dan raaka wrote: > > > > > can you post what you see in the settings->about .. about the build > > > > info you > > > > have .. > > --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to android-developers-unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/android-developers?hl=en -~--~~~~--~~--~--~---
[android-developers] Re: how to use adb tool on SAMSUNG GALAXY?
@Xavier unfortunately adb from r3 does not work under Linux. It does not see the device. From other Samsung owners I read that it works fine under Windows. When I replaced the binary with the patched one, everything started to work. It must be his changes to usb_linux.c which are doing the trick. So I hope the fix will make it's way into the official sources. Please provide an update of the 1.5 SDK. At least with the patched adb I can work now. Thanks Olaf On 21 Jul., 03:33, Xavier Ducrohet wrote: > You should not have to replace adb with another one. > > adb in r3 supports Samsung devices directly. The other steps are correct > though. > > xav > > > > On Mon, Jul 20, 2009 at 4:21 PM, Olaf Geibig > wrote: > > > Quick Howto for ubuntu: > > > - download SDK 1.5 r3 > > - enable debug mode on the device: Settings -> Applications -> > > Development -> USB debugging > > - add udev rule:http://developer.android.com/intl/de/guide/developing/ > > device.html but use Samsung's vendor id instead: SYSFS{idVendor} > > =="04e8" > > - replace the adb binary by this > > one:http://floe.butterbrot.org/external/adb.gz > > - to use ddms on a 64 bit > > system:http://coffeecokeandcode.blogspot.com/2009/07/ddms-on-ubuntu-64bit.html > > > Patched adb thanks to Flori7500 as mentioned in my previous post. > > > Cheers, Olaf > > > On 18 Jul., 21:13, fexpop wrote: > >> Hi, > > >> on my device the build number is 76XXCSDCBALUM6375. It won't be found > >> by adb, neither on Windows nor on Linux. > > >> Regards, > > >> Felix > > >> On Jul 18, 8:50 pm, dan raaka wrote: > > >> > can you post what you see in the settings->about .. about the build info > >> > you > >> > have .. > > -- > Xavier Ducrohet > Android Developer Tools Engineer > Google Inc. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to android-developers-unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/android-developers?hl=en -~--~~~~--~~--~--~---
[android-developers] Re: how to use adb tool on SAMSUNG GALAXY?
Quick Howto for ubuntu: - download SDK 1.5 r3 - enable debug mode on the device: Settings -> Applications -> Development -> USB debugging - add udev rule:http://developer.android.com/intl/de/guide/developing/ device.html but use Samsung's vendor id instead: SYSFS{idVendor} =="04e8" - replace the adb binary by this one: http://floe.butterbrot.org/external/adb.gz - to use ddms on a 64 bit system: http://coffeecokeandcode.blogspot.com/2009/07/ddms-on-ubuntu-64bit.html Patched adb thanks to Flori7500 as mentioned in my previous post. Cheers, Olaf On 18 Jul., 21:13, fexpop wrote: > Hi, > > on my device the build number is 76XXCSDCBALUM6375. It won't be found > by adb, neither on Windows nor on Linux. > > Regards, > > Felix > > On Jul 18, 8:50 pm, dan raaka wrote: > > > can you post what you see in the settings->about .. about the build info you > > have .. > > --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to android-developers-unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/android-developers?hl=en -~--~~~~--~~--~--~---
[android-developers] Re: how to use adb tool on SAMSUNG GALAXY?
Solved!!! Flori7500 from the German andoid community had fixed the linux adb issue. See his changeset: https://review.source.android.com/#change,10728 Looks like he didn't notice the actual changes in the current head concerning the Samsung vendor id constant, but I guess he will merge his changes to adb/usb_linux.c into the head. If you can't wait and/or build your own SDK he posted a linux binary on a german Samsung Galaxy forum: http://www.android-hilfe.de/o2-samsung-galaxy-i7500-forum/4021-adb-jetzt-auch-auf-dem-galaxy.html#post38582 Kudos to Flori as he saved my day. Cheers, Olaf On 19 Jul., 14:08, legerb wrote: > Something like that ;-) > > On Jul 14, 7:11 pm, David Turner wrote: > > > You need a different version of ADB to access this phone at the moment. > > A future release of the SDK will provide an ADB binary that should be able > > to do that, but this is not available yet as far as I know. > > > You're quite on the bleeding edge, aren't you ;-) > > > On Tue, Jul 14, 2009 at 6:05 PM, legerb wrote: > > > > Hey, > > > I just got this device too. Trying to figure out how to debug on > > > device too. > > > According this > > >http://groups.google.com/group/android-beginners/browse_thread/thread... > > > Samsung have their own adb. > > > Please update the thread if you've got any progress :) > > > > thanks ahead! > > > > On Jul 11, 10:54 pm, da yang wrote: > > > > Hi > > > > i got this new mobilephone this week in Germany, wanted to debug my > > > > program on the device. but it doesn't work, "c:\>adbdevices" lists > > > > no device attached, though i have tried to change the > > > > "android_usb.inf" in order to install the usb driver from SDK. > > > > i added some entries as follows: > > > > under > > > > [Google.NTx86] > > > > > ; HTC DREAM > > > > ... > > > > > ; SAMSUNGGALAXY > > > > %USB\VID_04E8&PID_6640. > > > > DeviceDescRelease%=androidusb.Dev, USB > > > > \VID_04E8&PID_6640 > > > > %USB\VID_04E8&PID_6640&MI_01.DeviceDescRelease%=androidusb.Dev, USB > > > > \VID_04E8&PID_6640&MI_01 > > > > %USB\VID_04E8&PID_6640.DeviceDescRelease%=androidusb.Dev, USB > > > > \VID_04E8&PID_6640 > > > > > and [Strings]: > > > > > USB\VID_04E8&PID_6640.DeviceDescRelease="SAMSUNGGALAXY" > > > > USB\VID_04E8&PID_6640&MI_01.DeviceDescRelease="SAMSUNGGALAXY > > > > CompositeADBInterface" > > > > USB\VID_04E8&PID_6640.DeviceDescRelease="SAMSUNGGALAXYBootloader" > > > > > i got only one VID and one PID through > > > > USBVIEW, though for HTC DREAM there are different PIDs used. > > > > Theadbinterface got installed, butadbjust didn't work. > > > > > later i also tried to use the device under linux, set up the device as > > > > in Dev guide: > > > > > If you're developing on Ubuntu Linux, you need to add a rules file: > > > > > 1. Login as root and create this file: /etc/udev/rules.d/51- > > > > android.rules. > > > > > For Gusty/Hardy, edit the file to read: > > > > SUBSYSTEM=="usb", SYSFS{idVendor}=="0bb4", MODE="0666" > > > > > For Dapper, edit the file to read: > > > > SUBSYSTEM=="usb_device", SYSFS{idVendor}=="0bb4", MODE="0666" > > > > 2. Now execute: > > > > chmod a+rx /etc/udev/rules.d/51-android.rules > > > > > "adbdevices" listed nothing as well. : ( > > > > > open a terminal on the device, with "ps", i guess theadbdaemon > > > > "adbd" is running. > > > > but theadbtool just doesn't work. > > > > > Can someone help me? > > > > > thanks da > > --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to android-developers-unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/android-developers?hl=en -~--~~~~--~~--~--~---
[android-developers] Re: how to use adb tool on SAMSUNG GALAXY?
Oh I forgot... It might be good to know that Samsung announced a bugfix firmware update for the Samsung Galaxy which shall be released next week. Cheers, Olaf On 19 Jul., 13:53, Olaf Geibig wrote: > My SDK: > adb version 1.0.20 from android-sdk-linux_x86-1.5_r3 > > My phone's info: > Model number: Galaxy > Firmware version: 1.5 > Baseband version: I7500XXIFF > Kernel version: 2.6.27 hud...@andy #1 > Build number: 76XXCSDCBALUM6375 > > My udev rule: > SUBSYSTEM=="usb", SYSFS{idVendor}=="04e8", MODE="0666" > > My OS: > Ubuntu hardy 64bit > uname -a > Linux asriel 2.6.24-24-generic #1 SMP Tue Jul 7 19:10:36 UTC 2009 > x86_64 GNU/Linux > > On 18 Jul., 20:50, dan raaka wrote: > > > My environment is win xp. if you see things properly in the device manager, > > i am guessing you have installed the drivers properly. > > > can you post what you see in the settings->about .. about the build info you > > have .. > > > -Dan > > > On Sat, Jul 18, 2009 at 3:27 AM, Olaf Geibig > > wrote: > > > > I also don't see the galaxy. I'm on ubuntu hardy 64 bit. My udev rule: > > > SUBSYSTEM=="usb", SYSFS{idVendor}=="04e8", MODE="0666" > > > > Sorry for cross posting but I think this thread is better for this > > > subject so I'll stick to this one now. > > --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to android-developers-unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/android-developers?hl=en -~--~~~~--~~--~--~---
[android-developers] Re: how to use adb tool on SAMSUNG GALAXY?
My SDK: adb version 1.0.20 from android-sdk-linux_x86-1.5_r3 My phone's info: Model number: Galaxy Firmware version: 1.5 Baseband version: I7500XXIFF Kernel version: 2.6.27 hud...@andy #1 Build number: 76XXCSDCBALUM6375 My udev rule: SUBSYSTEM=="usb", SYSFS{idVendor}=="04e8", MODE="0666" My OS: Ubuntu hardy 64bit uname -a Linux asriel 2.6.24-24-generic #1 SMP Tue Jul 7 19:10:36 UTC 2009 x86_64 GNU/Linux On 18 Jul., 20:50, dan raaka wrote: > My environment is win xp. if you see things properly in the device manager, > i am guessing you have installed the drivers properly. > > can you post what you see in the settings->about .. about the build info you > have .. > > -Dan > > On Sat, Jul 18, 2009 at 3:27 AM, Olaf Geibig > wrote: > > > > > I also don't see the galaxy. I'm on ubuntu hardy 64 bit. My udev rule: > > SUBSYSTEM=="usb", SYSFS{idVendor}=="04e8", MODE="0666" > > > Sorry for cross posting but I think this thread is better for this > > subject so I'll stick to this one now. > > --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to android-developers-unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/android-developers?hl=en -~--~~~~--~~--~--~---
[android-developers] Re: how to use adb tool on SAMSUNG GALAXY?
I also don't see the galaxy. I'm on ubuntu hardy 64 bit. My udev rule: SUBSYSTEM=="usb", SYSFS{idVendor}=="04e8", MODE="0666" Sorry for cross posting but I think this thread is better for this subject so I'll stick to this one now. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to android-developers-unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/android-developers?hl=en -~--~~~~--~~--~--~---
[android-developers] Re: SDK 1.5_r3 is available
I also don't see the galaxy. I'm on ubuntu hardy 64 bit. My udev rule: SUBSYSTEM=="usb", SYSFS{idVendor}=="04e8", MODE="0666" --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to android-developers-unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/android-developers?hl=en -~--~~~~--~~--~--~---
[android-developers] Re: quick change input language in android
That's a real killer featuire for me, too. Please we need that badly. I need to write in different languages or the phone is not useful for me. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to android-developers-unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/android-developers?hl=en -~--~~~~--~~--~--~---