Samsung Galaxy S3 I9300 wird von Fastboot unter Ubuntu 14.04 nicht erkannt

Wenn ich mein Gerät im Download-Modusadb mit meinem Laptop verbinde, wird es weder von noch von fastbootBefehlen erkannt :

fastboot devicesund sudo fastboot devicesgibt nichts zurück, wenn das Gerät im "Download-Modus" verbunden ist.

fastboot deviceund sudo fastboot devicekehrt zurück < waiting for device >, wenn das Gerät im "Download-Modus" verbunden ist und nichts passiert, wenn ich das Gerät trenne und wieder verbinde.

cat /etc/udev/rules.d/51-android.ruleskehrt zurück:

SUBSYSTEM=="usb", ATTR{idVendor}=="04e8", ATTR{idProduct}=="6860", MODE="0666"
SUBSYSTEM=="usb", ATTR{idVendor}=="04e8", ATTR{idProduct}=="685d", MODE="0666"

cat /lib/udev/rules.d/70-android-tools-adb.ruleskehrt zurück:

# Udev rules for letting the console user access adb.
# Vendor ids
# Important product ids
# d001 adb recovery
# d002 adb system

# Applies to 18d1
# 2d00 accessory
# 2d01 accessory,adb
# 2d02 audio_source (part of libgphoto2-2)
# 2d03 audio_source,adb
# 2d04 accessory,audio_source
# 2d05 accessory,audio_source,adb
# 4ee1 mtp (part of libmtp-common)
# 4ee2 mtp,adb (part of libmtp-common)
# 4ee3 rndis
# 4ee4 adb,rdnis
# 4ee5 ptp
# 4ee6 ptp,adb
# 4e41 mtp
# 4e42 mtp,adb
# 4e43 ptp
# 4e44 ptp,adb
# 4e23 rndis
# 4e24 rndis,adb

ACTION=="add|change", SUBSYSTEM=="usb", \
  ATTRS{idVendor}=="18d1", \
  ATTRS{idProduct}=="2d01|2d03|2d05|4ee2|4ee4|4ee6|4e42|4e44|4e24|d001|d002", \
  TAG+="uaccess"

# Applies to 04e8
# 685b mass_storage
# 685e mass_storage,adb
# 685c mtp (libgphoto2-2 libmtp-common)
# 6860 mtp,adb (part of libgphoto2-2 libmtp-common)
# 6862 rndis,dm
# 6863 rndis
# 6864 rndis,adb & rndis,acm,dm
# 6865 ptp
# 6866 ptp,adb
# 6864 rndis,dm
# 6865 ptp
# 6866 ptp,adb

ACTION=="add|change", SUBSYSTEM=="usb", \
  ATTRS{idVendor}=="04e8", \
  ATTRS{idProduct}=="685e|6860|6864|6866|6866", \
  TAG+="uaccess"

cat /lib/udev/rules.d/70-android-tools-fastboot.ruleskehrt zurück:

# Udev rules for letting the console user access fastboot
# 4e40 grouper
# 4ee0 mako/manta
# 4e30 maguro/toro

ACTION=="add|change", SUBSYSTEM=="usb", \
  ATTRS{idVendor}=="18d1", ATTRS{idProduct}=="4e30|4e40|4ee0", \
  TAG+="uaccess"

# Applies to 04e8
# 686d odin mode (Download mode, Bootloader mode)    

ACTION=="add|change", SUBSYSTEM=="usb", \
  ATTRS{idVendor}=="04e8", \
  ATTRS{idProduct}=="685d", \
  TAG+="uaccess"

lsusbkehrt zurück , wenn das Gerät normal oder im WiederherstellungsmodusBus 002 Device 015: ID 04e8:6860 Samsung Electronics Co., Ltd GT-I9100 Phone [Galaxy S II], GT-I9300 Phone [Galaxy S III], GT-P7500 [Galaxy Tab 10.1] gestartet wird .

lsusbkehrt zurück Bus 002 Device 024: ID 04e8:685d Samsung Electronics Co., Ltd GT-I9100 Phone [Galaxy S II] (Download mode), wenn das Gerät im "Download-Modus" gestartet wird (Gerät mit Power- Taste + Home-Taste + Leiser einschalten )

adb devicekehrt zurück 4dxxxxxxxxxxxxxx device, wenn das Gerät normal gestartet wird.

adb devicekehrt zurück 4dxxxxxxxxxxxxxx recovery, wenn das Gerät im Wiederherstellungsmodus gestartet wird.

adberkennt das Gerät und kann es mit den folgenden Befehlen sowohl im normalen Modus als auch im Wiederherstellungsmodus neu starten: adb rebootund adb reboot recovery. Aber wenn Sie das Gerät im normalen Modus ausführen adb reboot bootloaderoder sogar sudo adb reboot bootloadernur booten. Um das Gerät im Download-Modus zu booten , muss ich manuell gleichzeitig die Tasten Power + Home + Volume Down drücken .

Ich habe versucht, meinen Laptop und mein Gerät neu zu starten, aber ohne Erfolg.
Meine android-tools-fastboot und android-tools-adb und android-tools-adbd Versionen sind: 4.2.2+git20130218.

adb reboot download verwenden Sie diesen Befehl für Samsung Galaxy

Antworten (1)

Samsung-Geräte mit Download-Modus unterstützen nicht fastboot.

adbwird im Fastboot-Modus sowieso nicht unterstützt (und auch nicht im Download-Modus).

Wenn Sie etwas per Fastboot flashen möchten, müssen Sie Odin oder Heimdall (oder ein anderes Tool, das mit dem Download-Modus funktioniert) verwenden.

Danke für die klare Antwort. Wissen Sie, ob es eine Möglichkeit gibt, ein benutzerdefiniertes Wiederherstellungsabbild mit dem Odin-Modus zu starten? Der Fastboot-Modus scheint dies zu unterstützen ( aubykhan.wordpress.com/2013/07/21/… ), aber ich weiß nicht, wie ich dasselbe mit dem Odin-Modus machen soll:-/
@JepZ Ich glaube nicht, ich denke, Sie müssen die Wiederherstellung tatsächlich flashen, um sie zu booten.