St70104-2_20140116_int /93516z6dc01064w

S

shadowforever78

Neues Mitglied
0
Hi Ihr Lieben nun versuche ich mich auch mal mit dem rooten :)

Ich habe die Anleitung versucht Schritt für Schritt zu befolgen...

********************************
https://www.android-hilfe.de/forum/...eitung-auf-cfw-d-version-tutorial.533328.html


Bei mir passiert ADB-root folgendes:

17591320ni.jpg


woran liegt es?

Ich sehe die Meldung : ADB cannot run as root in production builds...

wie kann ich das nochmal umgehen?


Vielen Dank im vorraus
 
Hat keiner eine Idee? :)
 
Doch.
Warum stellst du die Frage nicht in dem vorhandenen Root-Thread, welchen du ja gefunden hast?
Und was soll man sich unter dem Titel "St70104-2_20140116_int /93516z6dc01064w" vorstellen?
 
Ehren-Mitglied hin oder her, in xminister steckt immer noch der supermod ;-)
Dieses root script funzt nicht, weil es davon ausgeht, dass das tab adb superuser Rechte gibt(adb root). So wie ich das sehe ist diese Funktion in deinem Firmware build ausgeschaltet. Da du aber eine adb Verbindung hast, kannst du ja folgende Methode verwenden:
Root MANY ANDROID! [Upd: 14.12.2013] - Updated to new Root method - xda-developers
 
Ich habe das Problem das ich keine adb Treiber installiert bekomme. Ich bin nach der Anleitung von https://www.android-hilfe.de/forum/root-custom-roms-modding-fuer-surftab-breeze-7-0.1207/root-vorbereitung-auf-cfw-d-version-tutorial.533328.html
gegangen. Allerdings wird mein Tablet nicht erkannt, also ist es mir nicht möglich zu rooten, ich habe dort nach gefragt wie ich am besten die adb installiere damit ich rooten kann, allerdings bin ich hier hin verwiesen wurden, wie unter diesem Link zu sehen ist.
https://www.android-hilfe.de/forum/root-custom-roms-modding-fuer-surftab-breeze-7-0.1207/root-vorbereitung-auf-cfw-d-version-tutorial.533328.html#post-7329267.
Kann mir jemand jetzt helfen oder besteht da kein interesse
 
Checkliste:
- USB Debugging eingeschaltet?
- Gerät am PC via USB angeschlossen?
- Erscheint das Gerät als Generic ADB interface for Trekstor devices?
-> Wenn nicht, steht dort ein Gerät mit gelbem Ausrufezeichen im Geräte Manager? Es MUSS eines dort stehen, wenn USB Debugging eingeschaltet ist
- Hast du adb heruntergeladen und über die Kommandozeile irgendein Testkommando ausgeführt (bsp. adb devices oder adb start-server)?
- Hast du die Vendor ID 0x2207 in folgende Datei stehen: C:\Benutzer\<dein Username>\.android\adb_usb.ini?
-> wenn die Datei nicht existiert, dann erstelle diese und trage 0x2207 in die Datei ein
- führe danach in der Kommandozeile folgendes aus:
Code:
adb kill-server
adb devices

Dann muss das Tab zu sehen sein
 
Toll, jetzt habt ihr zwei Threads zum selben Thema und jeder schreibt dort, wo er gerade Lustig ist. :thumbsup:
 
USB Debugging ist eingeschaltet.
Gerät am PC angeschlossen.
Generic ADB interface for Trekstor devices stht nicht im Geräte Manager sonder, Android mit einem gelben Warnschild.
ich habe erst das adb devices dann das adb start-server als Testkomando eingegeben, dann kam das:

C:\Users\Patrick\Desktop\Handy IPhone Samsung U.S.W\ADB>adb start-server

C:\Users\Patrick\Desktop\Handy IPhone Samsung U.S.W\ADB>adb devices
List of devices attached

Vendor ID 0x2207 steht in der angegebenen Datei.
Ich habe adb kill und adb device eingegeben, dann kommt folgendes:

C:\Users\Patrick\Desktop\Handy IPhone Samsung U.S.W\ADB>adb kill server
Android Debug Bridge version 1.0.26

-d - directs command to the only connected USB devic
e
returns an error if more than one USB device is
present.
-e - directs command to the only running emulator.
returns an error if more than one emulator is r
unning.
-s <serial number> - directs command to the USB device or emulator w
ith
the given serial number. Overrides ANDROID_SERI
AL
environment variable.
-p <product name or path> - simple product name like 'sooner', or
a relative/absolute path to a product
out directory like 'out/target/product/sooner'.

If -p is not specified, the ANDROID_PRODUCT_OUT

environment variable is used, which must
be an absolute path.
devices - list all connected devices
connect <host>[:<port>] - connect to a device via TCP/IP
Port 5555 is used by default if no port number
is specified.
disconnect [<host>[:<port>]] - disconnect from a TCP/IP device.
Port 5555 is used by default if no port number
is specified.
Using this ocmmand with no additional arguments

will disconnect from all connected TCP/IP devic
es.

device commands:
adb push <local> <remote> - copy file/dir to device
adb pull <remote> [<local>] - copy file/dir from device
adb sync [ <directory> ] - copy host->device only if changed
(-l means list but don't copy)
(see 'adb help all')
adb shell - run remote shell interactively
adb shell <command> - run remote shell command
adb emu <command> - run emulator console command
adb logcat [ <filter-spec> ] - View device log
adb forward <local> <remote> - forward socket connections
forward specs are one of:
tcp:<port>
localabstract:<unix domain socket name>
localreserved:<unix domain socket name>
localfilesystem:<unix domain socket name>
dev:<character device name>
jdwp:<process pid> (remote only)
adb jdwp - list PIDs of processes hosting a JDWP transport

adb install [-l] [-r] [-s] <file> - push this package file to the device and i
nstall it
('-l' means forward-lock the app)
('-r' means reinstall the app, keeping its data
)
('-s' means install on SD card instead of inter
nal storage)
adb uninstall [-k] <package> - remove this app package from the device
('-k' means keep the data and cache directories
)
adb bugreport - return all information from the device
that should be included in a bug report.

adb help - show this help message
adb version - show version num

DATAOPTS:
(no option) - don't touch the data partition
-w - wipe the data partition
-d - flash the data partition

scripting:
adb wait-for-device - block until device is online
adb start-server - ensure that there is a server running
adb kill-server - kill the server if it is running
adb get-state - prints: offline | bootloader | device
adb get-serialno - prints: <serial-number>
adb status-window - continuously print device status for a specifie
d device
adb remount - remounts the /system partition on the device re
ad-write
adb reboot [bootloader|recovery] - reboots the device, optionally into the boo
tloader or recovery program
adb reboot-bootloader - reboots the device into the bootloader
adb root - restarts the adbd daemon with root permissions
adb usb - restarts the adbd daemon listening on USB
adb tcpip <port> - restarts the adbd daemon listening on TCP on th
e specified port
networking:
adb ppp <tty> [parameters] - Run PPP over USB.
Note: you should not automatically start a PPP connection.
<tty> refers to the tty for PPP stream. Eg. dev:/dev/omap_csmi_tty1
[parameters] - Eg. defaultroute debug dump local notty usepeerdns

adb sync notes: adb sync [ <directory> ]
<localdir> can be interpreted in several ways:

- If <directory> is not specified, both /system and /data partitions will be u
pdated.

- If it is "system" or "data", only the corresponding partition
is updated.

environmental variables:
ADB_TRACE - Print debug information. A comma separated list
of the following values
1 or all, adb, sockets, packets, rwx, usb, sync
, sysdeps, transport, jdwp
ANDROID_SERIAL - The serial number to connect to. -s takes prior
ity over this if given.
ANDROID_LOG_TAGS - When used with the logcat option, only these de
bug tags are printed.

C:\Users\Patrick\Desktop\Handy IPhone Samsung U.S.W\ADB>adb device
Android Debug Bridge version 1.0.26

-d - directs command to the only connected USB devic
e
returns an error if more than one USB device is
present.
-e - directs command to the only running emulator.
returns an error if more than one emulator is r
unning.
-s <serial number> - directs command to the USB device or emulator w
ith
the given serial number. Overrides ANDROID_SERI
AL
environment variable.
-p <product name or path> - simple product name like 'sooner', or
a relative/absolute path to a product
out directory like 'out/target/product/sooner'.

If -p is not specified, the ANDROID_PRODUCT_OUT

environment variable is used, which must
be an absolute path.
devices - list all connected devices
connect <host>[:<port>] - connect to a device via TCP/IP
Port 5555 is used by default if no port number
is specified.
disconnect [<host>[:<port>]] - disconnect from a TCP/IP device.
Port 5555 is used by default if no port number
is specified.
Using this ocmmand with no additional arguments

will disconnect from all connected TCP/IP devic
es.

device commands:
adb push <local> <remote> - copy file/dir to device
adb pull <remote> [<local>] - copy file/dir from device
adb sync [ <directory> ] - copy host->device only if changed
(-l means list but don't copy)
(see 'adb help all')
adb shell - run remote shell interactively
adb shell <command> - run remote shell command
adb emu <command> - run emulator console command
adb logcat [ <filter-spec> ] - View device log
adb forward <local> <remote> - forward socket connections
forward specs are one of:
tcp:<port>
localabstract:<unix domain socket name>
localreserved:<unix domain socket name>
localfilesystem:<unix domain socket name>
dev:<character device name>
jdwp:<process pid> (remote only)
adb jdwp - list PIDs of processes hosting a JDWP transport

adb install [-l] [-r] [-s] <file> - push this package file to the device and i
nstall it
('-l' means forward-lock the app)
('-r' means reinstall the app, keeping its data
)
('-s' means install on SD card instead of inter
nal storage)
adb uninstall [-k] <package> - remove this app package from the device
('-k' means keep the data and cache directories
)
adb bugreport - return all information from the device
that should be included in a bug report.

adb help - show this help message
adb version - show version num

DATAOPTS:
(no option) - don't touch the data partition
-w - wipe the data partition
-d - flash the data partition

scripting:
adb wait-for-device - block until device is online
adb start-server - ensure that there is a server running
adb kill-server - kill the server if it is running
adb get-state - prints: offline | bootloader | device
adb get-serialno - prints: <serial-number>
adb status-window - continuously print device status for a specifie
d device
adb remount - remounts the /system partition on the device re
ad-write
adb reboot [bootloader|recovery] - reboots the device, optionally into the boo
tloader or recovery program
adb reboot-bootloader - reboots the device into the bootloader
adb root - restarts the adbd daemon with root permissions
adb usb - restarts the adbd daemon listening on USB
adb tcpip <port> - restarts the adbd daemon listening on TCP on th
e specified port
networking:
adb ppp <tty> [parameters] - Run PPP over USB.
Note: you should not automatically start a PPP connection.
<tty> refers to the tty for PPP stream. Eg. dev:/dev/omap_csmi_tty1
[parameters] - Eg. defaultroute debug dump local notty usepeerdns

adb sync notes: adb sync [ <directory> ]
<localdir> can be interpreted in several ways:

- If <directory> is not specified, both /system and /data partitions will be u
pdated.

- If it is "system" or "data", only the corresponding partition
is updated.

environmental variables:
ADB_TRACE - Print debug information. A comma separated list
of the following values
1 or all, adb, sockets, packets, rwx, usb, sync
, sysdeps, transport, jdwp
ANDROID_SERIAL - The serial number to connect to. -s takes prior
ity over this if given.
ANDROID_LOG_TAGS - When used with the logcat option, only these de
bug tags are printed.
C:\Users\Patrick\Desktop\Handy IPhone Samsung U.S.W\ADB>

So langsam verzweifele ich. Kein Root, keine CWM, keine Rom
 
Zuletzt bearbeitet von einem Moderator:
Du hast zwei Schreibfehler in den Parametern zum Starten. Deswegen kommt immer die gesamte Liste an Parametern, um dir zu zeigen, wie der Befehl richtig heißt.
Bei adb kill server hast du einen Bindestrich vergessen. Richtig lautet es: adb kill-server...
und bei adb device fehlt ein s, das hast du oben aber schon mal mit geschrieben, jetzt aber anscheinend vergessen. Richtig: adb devices

Der ursprüngliche Beitrag von 12:56 Uhr wurde um 12:57 Uhr ergänzt:

P.s.: Erscheint das Gerät denn im Gerätemanager?
 
im Geräte Manager steht nur Android mit einem gelben Warnschild

Der ursprüngliche Beitrag von 13:14 Uhr wurde um 13:25 Uhr ergänzt:

Ich habe die Fehler berichtigt, da steht dann folgendes:

C:\Users\Patrick\Desktop\Handy IPhone Samsung U.S.W\ADB>adb start-server

C:\Users\Patrick\Desktop\Handy IPhone Samsung U.S.W\ADB>adb devices
List of devices attached


C:\Users\Patrick\Desktop\Handy IPhone Samsung U.S.W\ADB>adb kill-server

C:\Users\Patrick\Desktop\Handy IPhone Samsung U.S.W\ADB>adb devices
* daemon not running. starting it now on port 5037 *
* daemon started successfully *
List of devices attached


Allerdings steht noch immer nicht Generic ADB interface for Trekstor devices im Geräte Manager, immer noch Android mit dem Warnschild
 
Wenn das Warnschild da steht findet Windows keinen Treiber. Installiere mal einen, dann sollte es gehen.
 
soweit bin ich auch schon gewesen, habe ein Treiber installiert und dann im Geräte Manager Treiber aktualisieren, folgendes kommt:

Fehler beim Installieren der Treibersoftware für das Gerät.
Es wurde Treibersoftware für das Gerät gefunden, aber bei der Installation ist ein Fehler aufgetreten.

Android Composite ADB Interface

Der Hashwert für die Datei ist in der angegebenen Katalogdatei nicht vorhanden. Die Datei ist wahrscheinlich beschädigt oder wurde unerlaubt geändert
 
Nutzt du Windows 8 oder höher?
 
Ich nutze Windows 8.1
 
Hallo an alle,

nachdem bei meinem Breeze (Seriennr. 93516Z6DC010PJ7) die Ortung angefangen hatte, verrückt zu spielen (das Teil gaukelte mir stets vor, ich befinde mich immer noch in meinem Urlaubsort - und da dieser zwar nur ein bisschen, aber doch außerhalb Deutschlands liegt, waren die Apps, bei denen ich die Ortung am meisten nutze, auf einmal für die Katz ("Du mußt eine Adresse in Deutschland angeben.") ) und selbst das Zurücksetzen auf Werkseinstellungen keine Abhilfe schaffen konnte, warum auch immer, hab ich mich entschieden, das Ding zu rooten zu versuchen, um u.a. auch die richtigen GPS-Server-Dateien aufspielen zu können (auf Grund eines Tipps von hier -https://www.android-hilfe.de/forum/acer-iconia-a500-a501.291/falsche-standorte-zb-google-maps-facebook-fancy-widget.124068.html#post-1709413).
So, genug Vorgeschichte, nun endlich mal zur Sache:
Beim Rooten bin ich auf einige Probleme gestolpert, das größte war wohl die Treiberinstallation (mein Win7 Starter behauptete stets, im Verzeichnis, in das ich die ZIP-Datei von hier entpackt hatte, sei kein Treiber für das Gerät drin - das direkte Kopieren nach system32 brachte auch nix, erst mit der "Datenträger"-Lösung hat's geklappt; ein Hinweis für meine etwaigen Nachfolger also - die Datei zum Auswählen heißt android_winusb.inf, und es könnte auch vonnöten sein, den Zugriff zu dieser erstmal zuzulassen (Rechtsklick -> Eigenschaften) ) sowie eben das, das shadowforever78 im zur Zeit ersten Beitrag dieses Themas schildert und mit dem TheSSJ ihm und somit indirekt auch mir geholfen hatte. (Danke-Taste drücken darf ich wohl mangels verfasster Beiträge noch nicht, daher nur ein Rohtext-Danke hier. :winki: )
TheSSJ schrieb:
[…]
Dieses root script funzt nicht, weil es davon ausgeht, dass das tab adb superuser Rechte gibt(adb root). So wie ich das sehe ist diese Funktion in deinem Firmware build ausgeschaltet. Da du aber eine adb Verbindung hast, kannst du ja folgende Methode verwenden:
Root MANY ANDROID! [Upd: 14.12.2013] - Updated to new Root method - xda-developers

Und gerade da kommt jetzt meine eigentliche Frage:
Auf der verlinkten Seite gibt es eine Rooting-Lösung namens Bin4ry, die ich dann, nach ein paarmal wiederholten Fehlermeldungen über nicht zu findenden Pfad schließlich doch…naja…halbwegs erforderlich anwenden konnte. (Wichtig - die Runme.bat-Datei rechts anzuklicken und aus dem Kontextmenü die Option "Als Administrator ausführen" zu wählen reicht nicht aus - das muss man zuallererst mit der Eingabeaufforderung selbst tun und die Datei erst von einer solchen aus starten!)
Das Problem trat ganz am Ende des Ganzen auf - eine Fehlermeldung
Code:
GOTO kann syntaktisch auf dieser Stelle nicht verarbeitet werden.
Seitdem stecke ich sozusagen fest - die Superuser-App selber meint, das Teil sei nun gerootet, alle üblichen im Laufe der Zeit von mir installierten Rootcheck-Apps, inkl. der, die ich mir schon kurz nach dem Kauf des Tablets zugezogen hatte (nachdem ich u.a. auch hier im Forum mehrere Beiträge darüber gelesen hatte, die SU-Binary sei von Werk aus mit drin) und die mir vorher immer schön prompt das Gegenteil mitgeteilt hatten, sind nun aber garnicht in der Lage, irgendwas auszuspucken - das Rädchen dreht sich nur und dreht…
Was meint ihr, bin ich nun im Besitz eines gerooteten Breeze 7.0 der am Anfang dieses ziemlich langen Beitrages genannten Seriennummer, oder doch nicht? :confused2:
An dieser Stelle nochmal ein dickes Danke an alle, die meinen Beitrag bis hier durchlesen konnten :winki:
 
Äh... das Breeze hat doch gar kein GPS?!
 
xminister schrieb:
Äh... das Breeze hat doch gar kein GPS?!
Na toll. Heißt also, dass ich mich von all diesen Ortung-Icons irreführen ließ, die sehen ja alle gleich aus...Und dazu noch diese GPS-Test-App, die mir gegenüber ganz ruhig "GPS on" meldete :rolleyes2: Das Teil ist ja ohnehin n Preisknaller (ich selbst habs für sage und schreibe 49€ bei MM erstanden), aber mit einem echten GPS drin wärs bestimmt DER Knaller. Naja was solls.:mellow:
Zumindest weiß ich nun, dass mein ursprüngliches Problem irgendwie mit WLANs zusammenhing (ohne GPS sind die ja die einzige Ortungsmöglichkeit). Aus den entsprechenden Themen konnte ich allerdings keine anwendbare Lösung herausfinden...
naja nun, wo ich das Tablet gerootet sowie die CWM draufgespielt hab, muss ich wohl auf ne TS-fähige Version der PyCanon ROM warten (zur Erinnerung, hab leider n D-Tablet :( )
 
Hallo zusammen,
da bin ich wieder :blush:
und verstehe die Welt nicht mehr.
Nachdem ich das Teil endgültig gerootet, es dann erfolglos mit einigen 4.2-ROMs versucht sowie die Stock-ROM zurückgeflasht hatte, funzt der blaue Punkt in Google Maps sowie die Standorterfassung in anderen Apps wieder tadellos. (Hat's zumindest bis jetzt getan; bis gestern war ich in Leipzig, dann gings in mein Heimatland und der blaue Punkt hat ganz normal drauf reagiert. Mal sehen, was ist, wenn ich nach Leipzig zurückkomme.)
Vorher hab ich alles Mögliche probiert (Datenlöschen bei Google Play Store & Diensten sowie Löschen der gesamten WLAN-Liste) - kein Erfolg.
MfG, nk8215
 
Zuletzt bearbeitet:
Edit: Bin nun in Leipzig und der blaue Punkt bzw. die Ortung funzt weiterhin…echt komisch, was da wohl los war…
 
Zuletzt bearbeitet von einem Moderator:

Ähnliche Themen

K
Antworten
6
Aufrufe
2.124
kiillah_kekzz
K
B
  • brainbomb
Antworten
6
Aufrufe
5.147
Peter B.
P
J
  • jsch
Antworten
8
Aufrufe
2.428
xminister
xminister
Zurück
Oben Unten