help i've formatted my card - One (M7) Q&A, Help & Troubleshooting

hi guys was messing with my one and i have wiped all my data and i can't connect phone to pc to copy a rom over..HELP

No stress buddy, just follow instructions from here and your good to go in 10-15mins :good:.
http://forum.xda-developers.com/showthread.php?t=1667929

Use odin to flash to stock then copy custom rom zip to mem card simple

jacklei said:
No stress buddy, just follow instructions from here and your good to go in 10-15mins :good:.
http://forum.xda-developers.com/showthread.php?t=1667929
Click to expand...
Click to collapse
hi dude all i find in mount is cache.data.system.usb-otg

JohnnyBlade said:
Use odin to flash to stock then copy custom rom zip to mem card simple
Click to expand...
Click to collapse
is odin only for samsung

smarty2322 said:
is odin only for samsung
Click to expand...
Click to collapse
Hi mate, I can help. You just need to set up adb properly and transfer the rom over we can do it on TeamViewer?

MacHackz said:
Hi mate, I can help. You just need to set up adb properly and transfer the rom over we can do it on TeamViewer?
Click to expand...
Click to collapse
i've downloaded team viewer

anyone please

smarty2322 said:
anyone please
Click to expand...
Click to collapse
Do you know how to use basic adb commands? How did you flash your recovery?
Sent from my HTC One using xda premium

redbull123 said:
Do you know how to use basic adb commands? How did you flash your recovery?
Sent from my HTC One using xda premium
Click to expand...
Click to collapse
i think so i'll have a look

smarty2322 said:
i think so i'll have a look
Click to expand...
Click to collapse
?? Have a look for what?
Sent from my HTC One using xda premium

redbull123 said:
?? Have a look for what?
Sent from my HTC One using xda premium
Click to expand...
Click to collapse
i'm not sure what commands i need to use

smarty2322 said:
i'm not sure what commands i need to use
Click to expand...
Click to collapse
You need to use the push command
Put a rom in your adb folder if you know where it is
Hold shift and right click on your adb folder and click open terminal/command window here
Put your phone into recovery
Command: adb devices
If your device appears then;
Command: adb push name_of_your_rom.zip /sdcard/
After a few minutes the rom should be on your sdcard.
If your device doesn't appear with adb devices then there's a problem with your adb files
Sent from my HTC One using xda premium
---------- Post added at 07:38 PM ---------- Previous post was at 07:29 PM ----------
Also, this guide is good for learning about adb...
http://www.androidcentral.com/android-201-10-basic-terminal-commands-you-should-know
Sent from my HTC One using xda premium

redbull123 said:
You need to use the push command
Put a rom in your adb folder if you know where it is
Hold shift and right click on your adb folder and click open terminal/command window here
Put your phone into recovery
Command: adb devices
If your device appears then;
Command: adb push name_of_your_rom.zip /sdcard/
After a few minutes the rom should be on your sdcard.
If your device doesn't appear with adb devices then there's a problem with your adb files
Sent from my HTC One using xda premium
---------- Post added at 07:38 PM ---------- Previous post was at 07:29 PM ----------
Also, this guide is good for learning about adb...
http://www.androidcentral.com/android-201-10-basic-terminal-commands-you-should-know
Sent from my HTC One using xda premium
Click to expand...
Click to collapse
do i need to be in team win recovery

smarty2322 said:
do i need to be in team win recovery
Click to expand...
Click to collapse
Doesn't matter what recovery you use
Sent from my HTC One using xda premium

i think it's ****ed usb will not connect

smarty2322 said:
i think it's ****ed usb will not connect
Click to expand...
Click to collapse
Reboot your computer and try a different usb port
Try go into your bootloader menu and press fastboot it should say fastboot usb after a few seconds then open a command window from the folder again and command
fastboot devices
Did you find your adb folder?
Sent from my HTC One using xda premium

redbull123 said:
Reboot your computer and try a different usb port
Try go into your bootloader menu and press fastboot it should say fastboot usb after a few seconds then open a command window from the folder again and command
fastboot devices
Did you find your adb folder?
Sent from my HTC One using xda premium
Click to expand...
Click to collapse
got fastboot usb working,cant find adb folder

smarty2322 said:
got fastboot usb working,cant find adb folder
Click to expand...
Click to collapse
Did your device serial code show in fastboot devices?
Download these files and Extract them to a folder on your desktop called 'adb' or something simple. This will now be your folder to open the terminal window from.
http://www.androidrevolution.nl/downloader/download.php?file=mini-sdk.rar
Sent from my HTC One using xda premium

redbull123 said:
Did your device serial code show in fastboot devices?
Download these files and Extract them to a folder on your desktop called 'adb' or something simple. This will now be your folder to open the terminal window from.
http://www.androidrevolution.nl/downloader/download.php?file=mini-sdk.rar
Sent from my HTC One using xda premium
Click to expand...
Click to collapse
ok done that

Related

[REQ]clockworkmod touch

Clockworkmod just released touch recovery 6.0.1.5. I know you can download it from their site but I can't find a way to do so(when I click download I just see a page with lots of characters). Can anyone zip it so that we can get this awesome recovery love for p990?
Thx in advance
Sent from my LG-P990 using xda premium
If you use another browser you can download the recovery image but I don't know how to flash it
Via ROM manager
Sent from my LG-P999
emanuele95 said:
but I don't know how to flash it
Click to expand...
Click to collapse
As already mentioned, you can do it using ROM Manager. Otherwise, flash IMG file via cmd line, either from a PC:
Code:
adb push XXX.img /data/local/
adb shell "su -c 'dd if=/data/local/XXX.img of=/dev/block/mmcblk0p7'"
adb shell rm /data/local/XXX.img
...or in terminal on the phone itself under su, once you copy the file somewhere on an SD card:
Code:
dd if=/path_to_file/XXX.img of=/dev/block/mmcblk0p7
Just replace "path_to_file" and "XXX" with the actual path and filename.
How to flash the .IMG through ROM manager?
Sent from my LG-P990 using xda premium
kt-Froggy said:
As already mentioned, you can do it using ROM Manager. Otherwise, flash IMG file via cmd line, either from a PC:
Code:
adb push XXX.img /data/local/
adb shell "su -c 'dd if=/data/local/XXX.img of=/dev/block/mmcblk0p7'"
adb shell rm /data/local/XXX.img
...or in terminal on the phone itself under su, once you copy the file somewhere on an SD card:
Code:
dd if=/path_to_file/XXX.img of=/dev/block/mmcblk0p7
Just replace "path_to_file" and "XXX" with the actual path and filename.
Click to expand...
Click to collapse
Thanks..installed with terminal emulator
So the O2X has official CWM Touch?
Uh... the o2x was the 2nd phone to get it. It was one of the models it was worked on.
What would it take to port it to g2x?
Sent from my LG-P999 using xda app-developers app
Thanks armcee you are the best! Also I have flashed the recovery through terminal emulator and it is the best recov!
Sent from my LG-P990 using xda premium
aremcee said:
Uh... the o2x was the 2nd phone to get it. It was one of the models it was worked on.
Click to expand...
Click to collapse
I thought it didn't purely because of this http://forum.xda-developers.com/showthread.php?t=1825510
Andy HOT said:
How to flash the .IMG through ROM manager?
Sent from my LG-P990 using xda premium
Click to expand...
Click to collapse
Not possible.
Install rom manager from gplay, open it buy rom manager primium it will then give u option for installing cwm touch
Sent from my Galaxy Nexus using xda premium

Mounting storage in recovery

So I managed to screw up by wiping both my data and my system, so now I have no os installed and no way to flash an OS from .zip files. Is there anyway for me to add a file to my storage and then flash it via recovery?
jason27131 said:
So I managed to screw up by wiping both my data and my system, so now I have no os installed and no way to flash an OS from .zip files. Is there anyway for me to add a file to my storage and then flash it via recovery?
Click to expand...
Click to collapse
Download a rom and put it in your adb folder
hold in shift and right click on your adb folder - 'open folder in terminal' or similar (not at my computer atm) should be there
Type
adb push name_of_rom.zip /sdcard/
Or
adb sideload name_of_rom.zip
both must be done in recovery. If you do the sideload method, choose the sideload option in recovery - once it transfers it will begin to install automatically. 'adb push' will put the file onto your sdcard then install it yourself in recovery.
Sent from my HTC One using xda premium
Awesome i'll try that. Thanks!
redbull123 said:
Download a rom and put it in your adb folder
hold in shift and right click on your adb folder - 'open folder in terminal' or similar (not at my computer atm) should be there
Type
adb push name_of_rom.zip /sdcard/
Or
adb sideload name_of_rom.zip
both must be done in recovery. If you do the sideload method, choose the sideload option in recovery - once it transfers it will begin to install automatically. 'adb push' will put the file onto your sdcard then install it yourself in recovery.
Sent from my HTC One using xda premium
Click to expand...
Click to collapse
It says device not found.
What about if you go into fastboot in the bootloader screen and type
fastboot devices
Maybe you need to reinstall your adb files...
Sent from my HTC One using xda premium
then you need to install HTC drivers for your phone. If configured correctly you can do adb devices and it will show up.
If you have drivers installed correctly under device manager the phone shows up as My HTC. Make sure you aren't using a USB 3 port if your computer has one.
Reboot your computer. That worked for me. I did the same thing
Also download HTC all in one tool kit. Its a lifesaver.
Sent from my HTC One using xda app-developers app
fastboot does work. Can i use the adb command in bootloader screen?
jason27131 said:
So I managed to screw up by wiping both my data and my system, so now I have no os installed and no way to flash an OS from .zip files. Is there anyway for me to add a file to my storage and then flash it via recovery?
Click to expand...
Click to collapse
I had same problem nothing was working .i used twrp and from there mount storage as otg as that was only working and put a rom in external pendrive and flash your rom
Sent from my HTC One aka M7
jason27131 said:
fastboot does work. Can i use the adb command in bootloader screen?
Click to expand...
Click to collapse
no only fastboot commands.
So then where do i do the adb commands? In the recovery? I don't get why adb devices isn't giving me anything when fastboot is.
jason27131 said:
fastboot does work. Can i use the adb command in bootloader screen?
Click to expand...
Click to collapse
No, adb must be done in recovery.
Go into recovery and try
adb devices
If nothing shows up you need to re-install/update your adb files and HTC drivers.
If your devices shows up this time then do what I said earlier...
Sent from my HTC One using xda premium
You can either reboot the computer or stop and restart the adb service from the windows management console. The driver for fastboot and adb are the same so I suspect it's something with adb server acting up
I'm guessing you update adb files via sdk manager?
redbull123 said:
Download a rom and put it in your adb folder
hold in shift and right click on your adb folder - 'open folder in terminal' or similar (not at my computer atm) should be there
Type
adb push name_of_rom.zip /sdcard/
Or
adb sideload name_of_rom.zip
both must be done in recovery. If you do the sideload method, choose the sideload option in recovery - once it transfers it will begin to install automatically. 'adb push' will put the file onto your sdcard then install it yourself in recovery.
Sent from my HTC One using xda premium
Click to expand...
Click to collapse
gunnyman said:
You can either reboot the computer or stop and restart the adb service from the windows management console. The driver for fastboot and adb are the same so I suspect it's something with adb server acting up
Click to expand...
Click to collapse
I stopped and restarted the adb services and it stil lcan't find the phone. is there any thing specific I have to do in recovery? This is confusing me so much.
jason27131 said:
I stopped and restarted the adb services and it stil lcan't find the phone. is there any thing specific I have to do in recovery? This is confusing me so much.
Click to expand...
Click to collapse
How hard is to flash via external flash drive using micro usb otg in recovery menu
Sent from my HTC One aka M7
Remove and reinstall the driver
zinder33 said:
How hard is to flash via external flash drive using micro usb otg in recovery menu
Sent from my HTC One aka M7
Click to expand...
Click to collapse
Reasonably hard if he doesn't have a USB OTG cable atm...
Sent from my HTC One using xda premium
zinder33 said:
How hard is to flash via external flash drive using micro usb otg in recovery menu
Sent from my HTC One aka M7
Click to expand...
Click to collapse
Very, since clicking on the micro-otg doesn't do anything. I managed to get sideload working I believe. It's at 40%, hopefully it is sideloading the file.
jason27131 said:
Very, since clicking on the micro-otg doesn't do anything. I managed to get sideload working I believe. It's at 40%, hopefully it is sideloading the file.
Click to expand...
Click to collapse
Should be good to go
If it freezes in Aroma just force reboot and try again.
Sent from my HTC One using xda premium

Adding ROMs to completely empty phone.

I stupidly showed my teenage son how to use ROM Manager and CWM on my phone.
He has now completely deleted (and I feel formatted) ALL Data etc on the phone.
So, as I cannot use any software on my MAC to transfer ROMs to the phone CAN Someone please advise how to get a ROM on the phone?
I can still access CWM Recovery. I have Android SDK installed, including Eclipse.
Please remember I am using a MAC, when you helpfully pass on ideas or solutions
Go to adb and fastboot folder, boot into recovery and use the command from terminal:
Code:
adb push name-of-rom.zip /sdcard/
.
Remember to put the rom into adb/fastboot folder
Hey, thank you.
I will try that soon
Hmm, trouble getting this done
I keep getting "command not found" message. Everything is in the folder.
I have done a CD to the folder etc
aussie_boi said:
Hmm, trouble getting this done
I keep getting "command not found" message. Everything is in the folder.
I have done a CD to the folder etc
Click to expand...
Click to collapse
Are you doing it while in recovery?
Try 'adb devices' and see if it sees your device
Type exactly the command you're typing to try push your ROM so we can see if you've made a slight mistake...
Sent from my HTC One using xda premium
redbull123 said:
Are you doing it while in recovery?
Try 'adb devices' and see if it sees your device
Type exactly the command you're typing to try push your ROM so we can see if you've made a slight mistake...
Sent from my HTC One using xda premium
Click to expand...
Click to collapse
Okies, I have tried adb devices and it comes back with no device listing. I was in CWM Recovery mode.
This is what I typed - /Users/Greg/Downloads/Android/sdk/platform-tools/adb push AR10.1.zip /sdcard/ for the push, and
I typed this for the adb devices command - /Users/Greg/Downloads/Android/sdk/platform-tools/adb devices
aussie_boi said:
Okies, I have tried adb devices and it comes back with no device listing. I was in CWM Recovery mode.
Click to expand...
Click to collapse
What does your adb folder have in it? I use a Mac and all I have is 2 files:
adb
fastboot
Try going into fastboot it should say FASTBOOT USB then try 'fastboot devices'
Also, try a different usb port...
Sent from my HTC One using xda premium
redbull123 said:
What does your adb folder have in it? I use a Mac and all I have is 2 files:
adb
fastboot
Try going into fastboot it should say FASTBOOT USB then try 'fastboot devices'
Also, try a different usb port...
Sent from my HTC One using xda premium
Click to expand...
Click to collapse
This is the response this time - homelatform-tools Greg$ /Users/Greg/Downloads/Android/sdk/platform-tools/fastboot devices
HT34LW912007 fastboot
aussie_boi said:
This is the response this time - homelatform-tools Greg$ /Users/Greg/Downloads/Android/sdk/platform-tools/fastboot devices
HT34LW912007fastboot
Click to expand...
Click to collapse
Now try recovery again
adb devices
Sent from my HTC One using xda premium
redbull123 said:
Now try recovery again
adb devices
Sent from my HTC One using xda premium
Click to expand...
Click to collapse
It's not playing ball at all - this is the response after "adb devices"
home:Android Greg$ /Users/Greg/Downloads/Android/adb devices
adb server is out of date. killing...
* daemon started successfully *
List of devices attached
home:Android Greg$
aussie_boi said:
It's not playing ball at all - this is the response after "adb devices"
home:Android Greg$ /Users/Greg/Downloads/Android/adb devices
adb server is out of date. killing...
* daemon started successfully *
List of devices attached
home:Android Greg$
Click to expand...
Click to collapse
Try finding the two files I said earlier in your sdk and make a new folder just with those two files and your ROM.zip and try opening your terminal window from that new folder.
Sent from my HTC One using xda premium
redbull123 said:
Try finding the two files I said earlier in your sdk and make a new folder just with those two files and your ROM.zip and try opening your terminal window from that new folder.
Sent from my HTC One using xda premium
Click to expand...
Click to collapse
Okies, I have already done that. I copied the "adb and fastboot" files from the sdk and added the "ROM.zip" file there also.
In recovery, I still get no devices listed with "adb devices"
I have opened a terminal window from within the case folder ... etc etc
I'm in the same spot and I don't have acess to a windows computer, tried doing this for almost 3 hours last night
Sent from my HTC VLE_U using xda premium
rizzxx7 said:
I'm in the same spot and I don't have acess to a windows computer, tried doing this for almost 3 hours last night
Sent from my HTC VLE_U using xda premium
Click to expand...
Click to collapse
Its much easier on a Mac. Have you downloaded the adb and fastboot files? Once you have those, navigate to their folder using cd in Terminal, add the rom zip and then use
Code:
./adb push rom.zip /data/media/
I've seen this happen on my friend's HTC One a week ago. I was able to fix it by using the ALL IN ONE TOOL that was posted in this forum. I SIDELOADED a ROM, but only AFTER flashing the stock Boot.img and kernel. I dunno if this helps, but it certainly fixed the problem for me.... oh and also, I did this on a Windows 7 lappy and I'm not familiar with Macs.
MacHackz said:
Its much easier on a Mac. Have you downloaded the adb and fastboot files? Once you have those, navigate to their folder using cd in Terminal, add the rom zip and then use
Code:
./adb push rom.zip /data/media/
Click to expand...
Click to collapse
I will try this once again when I get home, I've got a nandroid file from a stock tmobile Rom that I will try to install
Sent from my HTC VLE_U using xda premium
MacHackz said:
Its much easier on a Mac. Have you downloaded the adb and fastboot files? Once you have those, navigate to their folder using cd in Terminal, add the rom zip and then use
Code:
./adb push rom.zip /data/media/
Click to expand...
Click to collapse
When I do this, I still get the error: device not found
This is what I did when in the directory using Terminal within that directory. I was in Fastboot USB for the ADB push
home:Android Greg$ ./adb push ar10.1.zip /data/media/
* daemon not running. starting it now on port 5037 *
* daemon started successfully *
error: device not found
And when I do Fastboot Devices and ADB Devices, I get this in Fastboot USB mode
home:Android Greg$ ./fastboot devices
HT34LW912007 fastboot
home:Android Greg$ ./adb devices
List of devices attached
home:Android Greg$
This has really got me puzzled
shinobix37 said:
I've seen this happen on my friend's HTC One a week ago. I was able to fix it by using the ALL IN ONE TOOL that was posted in this forum. I SIDELOADED a ROM, but only AFTER flashing the stock Boot.img and kernel. I dunno if this helps, but it certainly fixed the problem for me.... oh and also, I did this on a Windows 7 lappy and I'm not familiar with Macs.
Click to expand...
Click to collapse
@shinobix37
Can you give me the link for the AllInOne Tools etc and where to download the Stock Kernel etc and how you did the side load.
Seems the SDK ADB is not working for me. Fastboot obviously is. This is all really strange
aussie_boi said:
@shinobix37
Can you give me the link for the AllInOne Tools etc and where to download the Stock Kernel etc and how you did the side load.
Seems the SDK ADB is not working for me. Fastboot obviously is. This is all really strange
Click to expand...
Click to collapse
When you use the command make sure your in cwm not fastboot.
So go into cwm then use command that you said before
Sent from my HTC One using xda premium
Android The Greek said:
When you use the command make sure your in cwm not fastboot.
So go into cwm then use command that you said before
Sent from my HTC One using xda premium
Click to expand...
Click to collapse
Thanks. I had been in CWM earlier, and the same as just now, when I try ./adb devices ... while in CWM, terminal returns no listing of devices.
It seems to me that ADB does work, as it identifies the "daemon is out of date" and restarts it successfully.
It is just that ADB does not recognise the HTC One, whilst "Fastboot devices" does, while not in fast boot usb.
I am still lost. CWM works. ADB cannot connect ...
Help

[Q] Im out of options

So I was about to reflash my phone and now Im stuck. I went a bit too fast maybe so now I have TWRP, no roms or backups. Not only that, I cant mount to USB because of stupid Win 8. Anyone have any ideas? Im pretty sure Im not bricked but right now I wish I had an SD card slot
Thanks again
BTW, I have the factory RUU but my computer isnt detecting the phone
aman1127 said:
So I was about to reflash my phone and now Im stuck. I went a bit too fast maybe so now I have TWRP, no roms or backups. Not only that, I cant mount to USB because of stupid Win 8. Anyone have any ideas? Im pretty sure Im not bricked but right now I wish I had an SD card slot
Thanks again
BTW, I have the factory RUU but my computer isnt detecting the phone
Click to expand...
Click to collapse
I don't know where they are exactly, but there are "universal" windows 8 ADB drivers floating around XDA that worked for me. I had to push the rom .zip to the phone from ADB in TWRP
Apk07 said:
I don't know where they are exactly, but there are "universal" windows 8 ADB drivers floating around XDA that worked for me. I had to push the rom .zip to the phone from ADB in TWRP
Click to expand...
Click to collapse
Thanks for the reply but Im retarded when it comes to ADB. I did it only once. Any page to tell me what to do exactly? Search for some reason is down for me right now.
Ok adb came back to me, like riding a bike. Turns out the image i was trying to flash was off by like a digit so it wouldnt flash. That was a waste of 4 hours
For future reference, the command to put a file onto your phone via adb is: adb push <file location> \sdcard
Sent from my HTCONE using xda app-developers app
decayer177 said:
For future reference, the command to put a file onto your phone via adb is: adb push <file location> \sdcard
Sent from my HTCONE using xda app-developers app
Click to expand...
Click to collapse
Or
adb push <filename> /sdcard/
bigdaddy619 said:
Or
adb push <filename> /sdcard/
Click to expand...
Click to collapse
Like doin stuff in adb or fastboot... Makes me feel smart! LOL
Sent from my HTCONE using Tapatalk 4

[REQUEST] (4.4.2) NAE System, Modem nandroid/dumps

Here's what I need so that I can update things like Firmware packages, ROM files, mods, etc...
This is all assuming they didn't break our ability to root and/or use a custom recovery
This is already done:
First ensure you're on the NAE update. (Duh)
Root it
Enable USB Debugging, connect to PC with adb setup and do the following:
adb shell
su
dd if=/dev/block/platform/msm_sdcc.1/by-name/apnhlos of=/data/local/tmp/apnhlos.bin
dd if=/dev/block/platform/msm_sdcc.1/by-name/mdm of=/data/local/tmp/mdm.bin
exit
adb pull /data/local/tmp/apnhlos.bin
adb pull /data/local/tmp/mdm.bin
It's possible they don't allow writing to /data/local/tmp, you might just use /sdcard instead. (so change of=/data/local/tmp/x.bin to of=/sdcard/x.bin) but being in su should grant you access to do whatever.
You'll have two files (apnhlos.bin and mdm.bin), zip those up, upload them somewhere and send them to me.
I still need this
Next for the system file(s) I need...
First ensure you're on the NAE update. (Duh)
Wipe it to full stock, no mods, no personal apps, no accounts setup, nothing.
Flash recovery
Boot to recovery and do a Nandroid backup to your external sd card.
Boot back to system and copy off the file(s) called system.ext4.img or something to the extent of that, it should be SOMEWHERE on your external sd card, TWRP stores it in the TWRP folder somewhere, CWM stores them in some clockworkmod folder somewhere I believe.
I need all the system image files from the backup, it'll be huge an upwards of 2-3GB, and it might split them into multiple files, so there might be more than one system file in that backup folder. I need them all, zip them up again and upload them somewhere and send the link to me please.
Thanks!
Also, if someone has the update file, that'd by slightly helpful as well, but the other two are more important.
OTA file name is:
8069446ccb676c347a698e64b2df33882547f017.USER_L720 _SPT_MK2_CSB_user_RP_to_NAE_CSB_user_RP_Update_FWD .zip
ChadH42 said:
OTA file name is:
8069446ccb676c347a698e64b2df33882547f017.USER_L720 _SPT_MK2_CSB_user_RP_to_NAE_CSB_user_RP_Update_FWD .zip
Click to expand...
Click to collapse
And the full URL: http://android.clients.google.com/p...CSB_user_RP_to_NAE_CSB_user_RP_Update_FWD.zip
Now lets see that de-knoxed modem file. and a de-knoxed NAE ROM.
thereverend999 said:
And the full URL: http://android.clients.google.com/p...CSB_user_RP_to_NAE_CSB_user_RP_Update_FWD.zip
Click to expand...
Click to collapse
Thanks for this, this gets a few of the firmware bits out of the way, now I just need the dumps of the modem and system...
Do you need adb on your computer, if so where can I get it for a windows computer?
Sent from my SPH-L720 using XDA Premium 4 mobile app
churchey360 said:
Do you need adb on your computer, if so where can I get it for a windows computer?
Sent from my SPH-L720 using XDA Premium 4 mobile app
Click to expand...
Click to collapse
That and the Samsung drivers
ADB: http://forum.xda-developers.com/showthread.php?t=2317790
Drivers: http://forum.xda-developers.com/showthread.php?t=961956
I'm rooted with custom recovery and adb setup on my computer but I'm not sure on how to type the commands. I got the adb shell and it recognized my phone the I typed su and Idk what to do from here any help?
Sent from my SPH-L720 using XDA Premium 4 mobile app
churchey360 said:
I'm rooted with custom recovery and adb setup on my computer but I'm not sure on how to type the commands. I got the adb shell and it recognized my phone the I typed su and Idk what to do from here any help?
Sent from my SPH-L720 using XDA Premium 4 mobile app
Click to expand...
Click to collapse
Check post one please! ???
Sent From My Samsung Galaxy S4! ?
churchey360 said:
I'm rooted with custom recovery and adb setup on my computer but I'm not sure on how to type the commands. I got the adb shell and it recognized my phone the I typed su and Idk what to do from here any help?
Sent from my SPH-L720 using XDA Premium 4 mobile app
Click to expand...
Click to collapse
The commands to type were in the OP.
adb shell
su
dd if=/dev/block/platform/msm_sdcc.1/by-name/apnhlos of=/data/local/tmp/apnhlos.bin
dd if=/dev/block/platform/msm_sdcc.1/by-name/mdm of=/data/local/tmp/mdm.bin
exit
adb pull /data/local/tmp/apnhlos.bin
adb pull /data/local/tmp/mdm.bin
Click to expand...
Click to collapse
Do I just type the whole thing at once? I tried doing just the apnhlos.bin and got this message.
Sent from my SPH-L720 using XDA Premium 4 mobile app
You hit enter after each line. In this exact order:
Type adb shell Then hit enter.
Type su Then hit enter.
Type dd if=/dev/block/platform/msm_sdcc.1/by-name/apnhlos of=/data/local/tmp/apnhlos.bin Then hit enter.
Type dd if=/dev/block/platform/msm_sdcc.1/by-name/mdm of=/data/local/tmp/mdm.bin Then hit enter.
Type exit Then hit enter.
Type adb pull /data/local/tmp/apnhlos.bin Then hit enter.
Type adb pull /data/local/tmp/mdm.bin Then hit enter.
After which, you'll follow the rest of the instructions in the OP.
I did it that way but the last 2 steps say error: device not found
Sent from my SPH-L720 using XDA Premium 4 mobile app
---------- Post added at 01:48 AM ---------- Previous post was at 01:36 AM ----------
I think it has to do with my adb interface drivers
Sent from my SPH-L720 using XDA Premium 4 mobile app
churchey360 said:
I did it that way but the last 2 steps say error: device not found
Sent from my SPH-L720 using XDA Premium 4 mobile app
---------- Post added at 01:48 AM ---------- Previous post was at 01:36 AM ----------
I think it has to do with my adb interface drivers
Sent from my SPH-L720 using XDA Premium 4 mobile app
Click to expand...
Click to collapse
I thanked you for helping out. His post said try changing the lines with /sdcard added. Check first post
Sent from my SPH-L720 using Tapatalk
I'll try it that way now and see if it'll work
Sent from my SPH-L720 using XDA Premium 4 mobile app
---------- Post added at 02:12 AM ---------- Previous post was at 01:59 AM ----------
I keep getting error device not found
Sent from my SPH-L720 using XDA Premium 4 mobile app
Is this correct?
Sent from my SPH-L720 using XDA Premium 4 mobile app
Yes. There you go. Zip them and upload them so he can download them.
Sent from my SPH-L720 using Tapatalk
@Unknownforce will this work? It is the apnhlos.bin and mdm.bin in a zip file it's not a big file so I hope it was done correctly it's about all I can do i tried to help lol. https://www.dropbox.com/s/tz9u0rkq092m9qv/0.zip
Sent from my SPH-L720 using XDA Premium 4 mobile app
churchey360 said:
@Unknownforce will this work? It is the apnhlos.bin and mdm.bin in a zip file it's not a big file so I hope it was done correctly it's about all I can do i tried to help lol. https://www.dropbox.com/s/tz9u0rkq092m9qv/0.zip
Sent from my SPH-L720 using XDA Premium 4 mobile app
Click to expand...
Click to collapse
Perfect, now all I need is the system dump, if you can get me that, everyone will love you!
OK I did a factory reset and backed up the stock ROM but I didn't back it up to the external sd card I just backed it up to the device storage will that be fine or should I backup to my external sd card?
Sent from my SPH-L720 using XDA Premium 4 mobile app

Categories

Resources