[HARD BRICK Fixed] - N9005-Make your debrick.img and have it on extSdCard by security

ValenteL

Senior Member
Aug 25, 2011
2,167
901
0
Espinho
Well, there is first one sector (512 bytes, 0x200) with the "legacy MS-DOS-type partition table" ...
Thank You
I already read many about Knox and it's element's and like a retired from computers technical I understood what You explained.


EDIT: Sorry @xclub_101 I'm thinking on this You wrote "I think it could be safer (against a very paranoid knox-checking bootloader) to use 256MB for a debrick image".

I send my debrick.img from 128 M to berrg Member and he have debricked your N9005, like this Thread. He not explained me what he made and I not understand what arrived. I'm confused.
What You think about this?

Thank You.
 
Last edited:

xclub_101

Senior Member
Oct 15, 2012
1,243
355
0
Thank You
I already read many about Knox and it's element's and like a retired from computers technical I understood what You explained.


EDIT: Sorry @xclub_101 I'm thinking on this You wrote "I think it could be safer (against a very paranoid knox-checking bootloader) to use 256MB for a debrick image".

I send my debrick.img from 128 M to berrg Member and he have debricked your N9005, like this Thread. He not explained me what he made and I not understand what arrived. I'm confused.
What You think about this?

Thank You.

The 128 vs 256 MB could ONLY be a difference if you have knox 0x0 before you "bricked" the device, if you are knox 0x1 both are probably just as good. And I must repeat - COULD be a difference only in case the bootloader is paranoid and checks the kernel/recovery from the microSD image itself.
 
  • Like
Reactions: ValenteL

nabel_sweed

Senior Member
Nov 15, 2010
56
7
0
Thank you
succeeded with me this way
Download win32diskimager
Download your debrick image
Unzip both items and run win32diskimager
Run win32diskimager
browse for your extracted debrick image
Select your microSD in the dropdown box
Click write

thank very much after flash 4.4.2 my mobil back to live
 
Last edited:

mfractal

Senior Member
Aug 1, 2009
1,717
534
0
Londrina
tried flashing 4.4.2 and my phone is totally dead. no light no screen nothing..

Phone is SM-N9005.

Tried the image posted on the first page without success.. Any idea why =/ ?

BTW - mine doesn't show in device manager at all.

I think mine must be even more bricked.
 
Last edited:

nabel_sweed

Senior Member
Nov 15, 2010
56
7
0
For people that still have knox 0x0 (so no custom recovery) here are a few alternatives (of which one is also mentioned in some other places around, for instance this thread):

- all images described here will also contain a backup of SOME (the 256MB image) or ALL (32GB image) of the information on your phone, including EFS and IMEI - so making at least the 256MB debrick image is a good idea even only for this backup!

- it is assumed that you are rooted and you have some form of busybox installed on the Note 3;

- also on the USB-based methods it is assumed that you have one PC where you have ADB and CYGWIN or similar (netcat for Windows might be enough) installed (and you have USB debugging enabled and approved that PC to use with adb on your Note 3; also certain paths are assumed to be active, if not just use the full pathname in the corresponding commands)


- 1 - simplest method, PC and one microSD needed, you connect the USB cable then do:

adb shell

su


then if you want to just SAVE the debrick image to microSD you do:

dd if=/dev/block/mmcblk0 count=524288 of=/storage/extSdCard/debrick.bin

or if you want to directly make the debrick microSD (which will NOT be seen as a microSD any more after this, and of course all previous content on the microSD will be lost)

dd if=/dev/block/mmcblk0 count=524288 of=/dev/block/mmcblk1

- 2 - if you do not want to use the PC you can even do the same commands above directly from the phone in Terminal Emulator - but typing will be a lot more complex :p

- on methods 1 and 2 you can also make a 32GB image (by omitting the count=524288 parameter) - as long as you have a microSD with 32GB or more free :rolleyes:

- 3 - finally a method when you have no microSD (or no space on it, or you want to save the full 32GB image and do not want to wait twice) - connect your Note 3 over USB (somehow similar methods would also work over wireless connection, but slower; trying to use USB 3 will not be faster and will create huge problems since after 10 minutes USB 3 will be de-activated)

- on the PC create a port forward with something like

adb forward tcp:5555 tcp:5555

(you can check that it worked with adb forward --list)

- then still from PC start a shell over adb on the Note 3 and go superuser:

adb shell

su


- from that adb shell IF YOU WANT A FULL (32 GB) BACKUP start this command on the Note 3:

nc -l -p 5555 -e dd if=/dev/block/mmcblk0

(this should start netcat on Note 3 and set it to wait for a connection, then when that is established send the content of the entire internal flash)

- from that adb shell IF YOU WANT A MINIMAL 256 MB BACKUP start this command on the Note 3:

nc -l -p 5555 -e dd if=/dev/block/mmcblk0 count=524288


- still on the PC open a CYGWIN command prompt (elevated on Vista or newer) and from that one do:

nc 127.0.0.1 5555 > debrick.bin

that will open the connection and get the file sent from the Note 3 - this will take LONG (maybe over 2 hours on a 32 GB Note 3; OBVIOUSLY you need to have write permission and more than 32 GB free space).

The resulting debrick.bin will have like 112 extra bytes (or so) appended at the end (you can remove those with a program like trunc but it is unlikely to ever be a problem if you do not).

If you want to store it in a safe place - 7zip will compress those pretty well (depending on how full the internal storage of your Note 3 is) - mine fits after compression on one DVD-R.

You can also write it onto a miniSD for debricking purposes - writing all of it does not make so much sense unless you have many 32 GB microSD cards that you never use; for the purpose of just debricking it is said that even a 2-4 GB microSD will be able to boot in download mode, even a 128-256 MB one will boot (but IMHO 128MB is too little and might trigger knox on an ultra-paranoid bootloader, so 256MB is the size that I recommend).

Also note that it seems that entire "debricking using microSD" works a little different on Qualcomm-based Samsung phones vs Exynos-based phones - so far all in this thread is about Qualcomm-based models, for Exynos-based models you will need to search on Google after an original Samsung document called

13-58_SM-N900_Boot_Recovery_Guide_rev1.0.pdf

,which describes how on Exynos you also need one extra (and pretty simple) hardware trick (the same seems to be also valid on other Exynos phones, there is a similar document on debricking the S3 i9300).
Can i follow these instructions and get debrick.bin on with the Samsung i9505 ?
 

nabel_sweed

Senior Member
Nov 15, 2010
56
7
0
Thank you for your response
I've experimenting with with Samsung i9505 and got debrick.bin but when you put the memory in The phone does not work and stays dead, and when connected to your computer gives the status qualcom usb mode.
 

exprxp

Senior Member
Feb 7, 2010
86
38
0
Tried to create microSD card by Odin3 v3.9 and now I ave 2 types of JTAG cards

1. 4.3 JB
2. 4.4 KK


So if i have phone no power 4.3 Then I just instert my 4.3 JB JTAG microSD then power up. Phone will power up in Download Mode after 10 seconds.


If someone has a KK phone, then I insert KK JTAG microSD card



If phone power up normally but I still want to do JTAG, I need to open the phone then SHORT one resistor on the PBA then try ti power up.



tested on many Note 3 phones like (N9005 Qualcomm)
 

orbital_71

Senior Member
Apr 22, 2012
1,631
266
113
Hi so ur debrick are for all n9005 variant right? And it will work on asia model as well?

Sent from my SM-N9005 using Tapatalk 2
 

johnyboo

Senior Member
Jul 26, 2010
79
1
0
Tried to create microSD card by Odin3 v3.9 and now I ave 2 types of JTAG cards

1. 4.3 JB
2. 4.4 KK


So if i have phone no power 4.3 Then I just instert my 4.3 JB JTAG microSD then power up. Phone will power up in Download Mode after 10 seconds.


If someone has a KK phone, then I insert KK JTAG microSD card



If phone power up normally but I still want to do JTAG, I need to open the phone then SHORT one resistor on the PBA then try ti power up.



tested on many Note 3 phones like (N9005 Qualcomm)
I have a few N9005 bricks (never mind how), I tried to revive with sdcard and 4.4 Kitkat debrick.img but no response whatsoever.
Should I try the 4.3 debrick.img? Can anyone upload it?
Do I need to short any resistor on the PBA to get to boot from the card?
 

exprxp

Senior Member
Feb 7, 2010
86
38
0
I have a few N9005 bricks (never mind how), I tried to revive with sdcard and 4.4 Kitkat debrick.img but no response whatsoever.
Should I try the 4.3 debrick.img? Can anyone upload it?
Do I need to short any resistor on the PBA to get to boot from the card?
4.4 KK SD Card works fine on 4.3 JB phone,

I recommend to use 4.4 KK JTAG Card all the times.
 

bilalkhurshid2

New member
Jul 10, 2014
2
0
0
n9005

hi
i have same problem with N9005 i was trying to flash with z3x and this happen ,, now note 3 is connected as Qualcomm but it doesnt appear on odion ,, i did try with unbrik image file but it doesnt help plz help its from client otherwise i have to pay him pl help

---------- Post added at 12:07 PM ---------- Previous post was at 11:31 AM ----------

4.4 KK SD Card works fine on 4.3 JB phone,

I recommend to use 4.4 KK JTAG Card all the times.
yes is this the same way to make microsd card with unbrick image file exctracter with windows imager and putting it in the put
is that the same think like you said
JTAG
 

mnaseem

New member
Nov 28, 2007
2
0
0
n9005 bricked

I have 9005 bricked by software. It does not appear anything on screen but can go to dowwload mode and can install rom. I have tried several methods installing roms but still screen remains black. can I use this debric.img method to recover?
 

xclub_101

Senior Member
Oct 15, 2012
1,243
355
0
I have 9005 bricked by software. It does not appear anything on screen but can go to dowwload mode and can install rom. I have tried several methods installing roms but still screen remains black. can I use this debric.img method to recover?
If you still can get into download mode you will probably not be able to use the debrick.img method. You need to understand what errors you get when you try to program stock ROM in Odin (most common error is writing a ROM from the EU version to the Singapore version or the other way around - those have slightly different partitioning schemes and writing the wrong version will fail; also trying to downgrade from 4.4 to 4.3 will not work, or writing a stock N9005 EU ROM to any of the American versions will fail and leave you with a soft-brick).
 

mnaseem

New member
Nov 28, 2007
2
0
0
If you still can get into download mode you will probably not be able to use the debrick.img method. You need to understand what errors you get when you try to program stock ROM in Odin (most common error is writing a ROM from the EU version to the Singapore version or the other way around - those have slightly different partitioning schemes and writing the wrong version will fail; also trying to downgrade from 4.4 to 4.3 will not work, or writing a stock N9005 EU ROM to any of the American versions will fail and leave you with a soft-brick).
I have N9005 LTE 32GB version bought from official outlet in Dubai. The problem now is black screen while booting. I can hear the boot sound and blue light. Then the two soft keys down the bottom lights up and keeps on there forever with small vibrations at every 10s or so. I don't know If I can go into recovery menu. The problem initially started.. I went to samsung push service and says there's an update.. then cancelled. dowes not show any download started.. It was working normal then. After that I just did a normal restart. then stucked in boot logo.. keeps on rebooting. when I tried to go to recovery menu, appears first line and then reboots. After that I installed stock roms some BL.. at some point the display dos not show any thing even the boot logo. but I can go into dowload mode, detects in odin, can flash stock roms with no errors. stucked at black screen. I'm very much sure it is not a physical screen damege unless the firmwares damaged it. I don't know what to do next and keeps on reading forums and no luck still.. please help!
 

jdomadia

Senior Member
Jan 28, 2013
1,508
667
0
DUBAI/INDIA
I assume you are on stock rom without root, u can try in kies emergency firmware update, if not work & if u remember on which country stock rom u were b4 , look at sammmobile.com for latest firmware for same country & flash threw odin, clear catch & data b4 & after flash.

Sent from my SM-N9005 using XDA Free mobile app
 

melbshri

New member
Oct 19, 2014
1
0
0
briked smn9005 -

See this Thread HERE by @berrg:

[HELP] Galaxy Note 3 n9005 with KitKat (4.4) HARD BRICKED - FIXED!

We all must have the debrick.img on our extSdCard by security. If we have a Hard Brick we can make like this example solved whit success.

I Quote Post #7:

This for another device whit success: http://forum.xda-developers.com/showthread.php?t=2600869. Is same here. Thanks @shazzl

And this the most important: http://forum.xda-developers.com/showthread.php?t=2439367. Thanks @KAsp3rd. All credits to this work HERE.

See also this to create the debrick.img: http://forum.xda-developers.com/showpost.php?p=45725480&postcount=45. Thanks @DocHoliday77

T999 is a example. This Mod work whit Pit.file partition mmcblk0. This is same on all Samsung devices afaik. I only change to N9005_Partial_sys...

If You flashed a new Pit file or Updated by OTA (that can bring one), make new debrick.img .

PS: All People, make your debrick.img and have it on extSdCard by security.

My debrick.img N9005 4.4.2 Kitkat: HERE. Look the THANKS buton if download it.;):)

Flash this Mod attached by Recovery. Saved on internal Sdcard. Copy it to extSdCard.

NOTE: It seems that entire "debricking using microSD" works a little different on Qualcomm-based Samsung phones vs Exynos-based phones - so far all in this thread is about Qualcomm-based models. See post #26 to more details.
Thanks @xclub_101 .
i tried using the unbrick image provided on your thread but still not able to boot the phone up. i downloaded the file and burned it to sd card using win32diskimager. After loading the card onto the phone i tried to start it up but still stuck on the screen "firmware upgrade error"