HILFE! Bootloop

K

Kaozra

Neues Mitglied
0
Hallo Zusammen.

Da ich mir nicht unbedingt das Nexus 5 Kaufen wollte, habe ich heute mein HOX + gerootet. bis zum Superuser ging alles Tip Top!

danach wollte ich das cyanogenmod 10.2 installieren, seither bin ich nur noch im Bootloop.

Ich habe TWRP 2.6.3.0 drauf

Was ich alles schon ausprobiert habe:

Recovery -> wipe cache / wipe Dalvik /
anderes ROM probiert drauf zu spielen kommt device not found oder Failure...
hab den bootloader relocked und Factory RUU draufgespielt auch Failure

Leider habe ich die SD Formatiert, also habe ich kein Backup mehr drauf...
ich habe schon via cmd alles probiert was geht fastboot boot boot.img etc.
nichts geht!

Was kann ich machen?
 
Du musst die boot.img der custom ROM separat flashen...dann gehts.
D.h. du brauchst von cm10.2 die boot.img

Gesendet von meinem SM-N9005 mit der Android-Hilfe.de App
 
Schröppel;7067949 schrieb:
Du musst die boot.img der custom ROM separat flashen...dann gehts.
D.h. du brauchst von cm10.2 die boot.img

Gesendet von meinem SM-N9005 mit der Android-Hilfe.de App


Über welchen Befehl bei Hasoons'2000... Programm kann ich das separat flashen?
 
so hab gerade das boot.img mit dieser anleitung: [Tutorial] How to flash a new boot.img via Fastboot - xda-developers geflasht, es gab keine Fehlermeldung, aber es passiert immernoch nichts.

Da ich jetzt TWRP drauf habe, kann es sein dass cm 10.2 nicht mehr funktioniert?

Der ursprüngliche Beitrag von 11:17 Uhr wurde um 11:18 Uhr ergänzt:

Habe ich schon erwähnt, dass ich keinen direkten zugriff auf die SD Karte habe?

Der ursprüngliche Beitrag von 11:18 Uhr wurde um 11:21 Uhr ergänzt:

Hab noch eine Info, wenn ich auf TWRP Rebooten will, kommt oben die Meldung "No OS Installed! Are you sure you wish to reboot?
 
Folge doch mal der Anleitung die ich gepostet habe bzw. überprüfe die Schritte
 
serecords schrieb:
Folge doch mal der Anleitung die ich gepostet habe bzw. überprüfe die Schritte

In der Anleitung steht:

"Nun schließen wir das Handy via USB Kabel an den PC an, verschieben die komplette ROM (.zip Datei) auf die SD Karte, ebenfalls in keinen Unterordner, wichtig!!"

wie soll das gehen wenn ich keinen Zugriff auf die SD Karte habe?
 
Dann musst du es an dieser Stelle über ADB Sideload machen würde ich sagen.
 
Genau das geht nicht ich bin jetzt im cmd:

hab das htc im twrp auf sideload.

bei cmd habe ich eingegeben: adb devices, es hat das Gerät erkannt und es steht "host"
wenn ich dann adb sideload "namen der rar datei" eingebe passiert nichts


egal was ich angebe, es kommt immer diese Meldung:

-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:\adb tools\adb-tools>
 
RAR? Das sollte eine ZIP-Datei sein, also

adb sideload datei.zip
 
als typ steht winrar zip datei

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

wegen winrar hab ich das so geschrieben. deswegen funktionierts trozdem nicht....

Der ursprüngliche Beitrag von 12:21 Uhr wurde um 12:24 Uhr ergänzt:

Kaozra schrieb:
als typ steht winrar zip datei

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

wegen winrar hab ich das so geschrieben. deswegen funktionierts trozdem nicht....

hab alles nochmals neu gestartet, jetzt kommt: cannot read sideload
 
Vielleicht sind auch deine ADB-Dateien zu alt, denn ADB Sideload gibt es nicht von Anfang an. Probier mal die angehängten Dateien aus.
 

Anhänge

  • adbfastboot.zip
    246,7 KB · Aufrufe: 134
kommt immernoch.

C:\adb tools\adb-tools>adb devices
adb server is out of date. killing...
* daemon started successfully *
List of devices attached
FA2APW100102 sideload


C:\adb tools\adb-tools>adb sideload night.zip
* cannot read 'sideload' *

C:\adb tools\adb-tools>

Der ursprüngliche Beitrag von 12:32 Uhr wurde um 12:35 Uhr ergänzt:

und der Pc meldet immer: gerät konnte nicht installiert werden.
 
Kaozra schrieb:
kommt immernoch.

C:\adb tools\adb-tools>adb devices
adb server is out of date. killing...
* daemon started successfully *
List of devices attached
FA2APW100102 sideload
Das zeigt, dass wenigstens die Treiber korrekt installiert sind.

C:\adb tools\adb-tools>adb sideload night.zip
* cannot read 'sideload' *
Liegt die Datei night.zip in dem Ordner "c:\adb tools\adb tools"?

und der Pc meldet immer: gerät konnte nicht installiert werden.
Das ist egal, denn er kann wahrscheinlich den MTP-Treiber nicht installieren - das geht erst wenn ein ROM auf dem Gerät läuft. Der Treiber läuft ja (s.o.).
 
die Datei liegt im ordner adb tools, dass ist ja komisch....
 
Aber sie müsste doch in "adb-tools" liegen laut deinem Auszug ausm CMD.
 
ja ich hab einen ordner der heisst adb tools und dort habe ich die winrar entpackt für adb-tools und in diesem ordner "adb-tools" ist auch die datei night.zip.

Der ursprüngliche Beitrag von 20:58 Uhr wurde um 20:58 Uhr ergänzt:

und ich gehe immer vom ordner adb-tools via shift ins cmd
 
Lässt du bei Windows eventuell die bekannten Dateierweiterungen ausblenden? Weil dann heißt die Datei bei dir vielleicht night.zip.zip
 
Ja! habs anzeigen lassen und steht tatsächlich zip.zip bin gerade beim übertragen der datei! Vielen Dank. melde mich wenns fertig ist.

muss ich was beachten nach der Übertragung?

Der ursprüngliche Beitrag von 22:51 Uhr wurde um 22:58 Uhr ergänzt:

So: es kam die Statusmeldung auf dem Smartphone

ADB Sideload Complete
Failed

Updating partition details...
Running boot script...

Finished running boot script.
Starting ADB sideload feature...
Installing '/data/media/sideload.zip'..
Checking for MD5 file...
Skipping MD5 check: no MD5 file found.
Verifying zip signature...
set_metada_recursive: some changes failed
E:Error executing updater binary in zip '/data/media/sideload.zip'

Der ursprüngliche Beitrag von 22:58 Uhr wurde um 23:49 Uhr ergänzt:

wenn ich mein htc im fastboot usb habe, wird es nicht erkannt wenn ich "adb devices" eingebe. habe gerade neue treiber installiert und das neueste htc sync, habe es aber nicht gestartet, falls das einen unterschied machen sollte.
 
Im fastboot funktioniert logischerweise auch kein adb ;)
Dort lautet der Befehl "fastboot devices"
Was den Rest betrifft, kann ich jetzt gerade nicht weiterhelfen. Ich werde es mir aber nachdem ich geschlafen hab nochmal anschauen.
 

Ähnliche Themen

T
  • TomV1
Antworten
1
Aufrufe
1.837
schinge
schinge
M
Antworten
5
Aufrufe
2.101
schinge
schinge
M
  • Machete
Antworten
1
Aufrufe
2.133
grasmonster
G
Zurück
Oben Unten