[ROM]><N9005 XXUDMJ7 JB 4.3><27/11/13><Pre-Rooted STOCK ROM's><Odex/DeOdex><Odin/CWM>

Status
Not open for further replies.
Search This thread

iamolu

Senior Member
Dec 16, 2013
344
90
Thanks for your great work...Can you please make SM-N9005 Official Odex Stock mj7 or MK2 ROM's - CWM/TWRP/PhilZ flashable ZIP. The Deodex flashable zip works great on my tmobile-n900t device but i prefer odex rom. Please if you can that would be great. I try to flash the odex odin but i get fail error
 
Last edited:

daraj

Senior Member
Jun 21, 2007
1,751
237
Florida, USA
Thanks for your great work...Can you please make SM-N9005 Official Odex Stock mj7 or MK2 ROM's - CWM/TWRP/PhilZ flashable ZIP. The Deodex flashable zip works great on my tmobile-n900t device but i prefer odex rom. Please if you can that would be great. I try to flash the odex odin but i get fail error

you cant Odin flash a N9005 Rom on your Tmobile..
 

Nemorensis32

Senior Member
May 29, 2012
163
15
Hi!

Sorry,

just need a confirmation :

Does changing the CSC or the Modem of a Rom trip KNOX ?

THank for your answers.
 

vacs03

Senior Member
Aug 28, 2010
276
84
hello,

quick question...does flashing a stock unbranded mk2 over a stock branded mj6 trip knox?
 

kraken77

Senior Member
May 6, 2012
1,582
524
Somewhere in The Earth
can you reupload your mj7 link to putlocker or mediafire? i have a bad time with androidfilehost. always stuck at 40% to 50% :( Also can you also deodexed and prerooted the MK2 version? thank you sir.
 
Last edited:

DjeMBeY

Senior Member
Dec 23, 2011
3,235
6,567
London, UK
www.soundcloud.com
Happy New Year!!!

Guide for Pre-Rooted ROM's (applicable to many Samsung devices):

You need Linux OS (Ubuntu 32/64 Bit) for Pre-Rooting Process:



Preparation:
1. Create a working folder, for example pre-rooted, download and extract THIS (64 Bit) file and copy/paste (simg2img & ext2simg) into working folder.
2. Download SuperSu.zip from Chainfire's thread and extract all files to new folder, for example "root files". Copy/paste this folder into working folder.
3. Download any Samsung FW and extract it. You'll have a single file xxxxxxxxx.tar.md5, extract it again to new folder (keep name of the folder same as name of your FW, xxxxxxxx , it makes things easier to work with).
4. Go to the new folder and check if all files are there (5-10 files), look for system.img.ext4. If everything is there, copy/paste whole folder xxxxxxxx to your working folder /pre-rooted
5. Move system.img.ext4 directly to the working folder: /pre-rooted/system.img.ext4.
At this point, you should have following files/folders in working folder:
/pre-rooted/system.img.ext4
/pre-rooted/ext2simg
/pre-rooted/simg2img
/pre-rooted/xxxxxxx (folder with your FW)
/pre-rooted/root files (folder with extracted files from SuperSU.zip)

Pre-Rooting process:
Open Terminal and navigate to the pre-rooted folder, for example: cd /home/*username*/pre-rooted.
Step 1:
Convert system.img.ext4 into a raw system partition that can be mounted under Linux as r/w partition - system.img.raw
Type in Terminal and press Enter:
Code:
./simg2img system.img.ext4 system.img.raw
and wait until the process is finished, it takes few minutes....
Step 2:
Mount converted partition under Linux:
Type in Terminal and press Enter:
Code:
mount -t ext4 -o loop system.img.raw /mnt
Use any File Manager or just navigate to /mnt/.... and there you have full access to the system files.
Step 3:
Copy/paste or delete any files you want from/to system, for example root files:
Superuser.apk -> /mnt/app/Superuser.apk
su (binary) -> /mnt/xbin/su
daemonsu (binary) -> /mnt/xbin/daemonsu
.su (binary) -> /mnt/bin/.ext/.su
recovery.sh -> /mnt/etc/install-recovery.sh
libdummy.so -> /mnt/lib/libdummy.so (extra file, can work without it)
Step 4:
Setting up permissions. Use Terminal, type and press Enter after each line:
Code:
chmod 06755 /mnt/xbin/su
chmod 06755 /mnt/bin/.ext/.su
chmod 0755 /mnt/xbin/daemonsu
chmod 0755 /mnt/etc/install-recovery.sh
chmod 0644 /mnt/app/Superuser.apk
chmod 0644 /mnt/lib/libdummy.so
Step 5:
Setting up SELinux markers (for JB 4.3 onwards). Use Terminal, type and press Enter after each line:
Code:
chown root.root /mnt/app/*
chcon u:object_r:system_file:s0 /mnt/app/*
Step 6:
Rebuilding system partition back into system_new.img.ext4. Use Terminal, type and press Enter
Code:
./ext2simg -v ./system.img.raw ./system_new.img.ext4
Partition size will be automatically adjusted, according to the size of system.img.raw (it takes few minutes to finish)
Now, just copy/paste system_new.img.ext4 to your FW folder - xxxxxxx - and rename it back to system.img.ext4.

Repacking all files back to new_xxxxxxx.tar.md5:
1. Use Terminal and navigate to your FW folder: /pre-rooted/xxxxxxx
2. Packing it all up:
Use Terminal, type and press Enter:
Code:
tar -H ustar -c aboot.mbn boot.img cache.img.ext4 hidden.img.ext4 modem.bin NON-HLOS.bin recovery.img rpm.mbn sbl1.mbn sbl2.mbn sbl3.mbn system.img.ext4 tz.mbn > I9505XXXXXXXX-PRE-ROOTED.tar
this is example of complete FW for GT-I9505, all files (bootloaders, modems, etc..) are listed and included. Check your FW folder for correct list of files from your FW.
3. Generating and adding .md5 checksum:
Use Terminal, type and press Enter after each line:
Code:
md5sum -t I9505XXXXXX-PRE-ROOTED.tar >> I9505XXXXXXX-PRE-ROOTED.tar
mv I9505XXXXXXX-PRE-ROOTED.tar I9505XXXXXXX-PRE-ROOTED.tar.md5
That's it!! All done, you can now use Odin and flash your new, pre-rooted FW.
NOTE: Make sure that you have Original FW on your HDD, just in case if your new FW won't boot up! :p
 
Last edited:

micky387

Recognized Developer
Sep 9, 2011
2,893
2,918
Lyon
Enjoy to see you here again man. Happy new year. Thanks for your hard work

Envoyé de mon SM-N9005 en utilisant Tapatalk
 
  • Like
Reactions: DjeMBeY

DjeMBeY

Senior Member
Dec 23, 2011
3,235
6,567
London, UK
www.soundcloud.com
It is a statement Djembey makes here: 'To all those who can't wait', here's what you can do: DO IT YOURSELF! :good:

And on this BOMBSHELL I'm closing this thread....

Sorry guys, I'm not able to carry on with development for Note 3... Not much free time at the moment, maybe one day I'll re-open but that's IT for now...

ps. Please use guide for making own pre-rooted ROM's and enjoy!
 
Last edited:
  • Like
Reactions: Dahdoul and berju
Status
Not open for further replies.

Top Liked Posts

  • There are no posts matching your filters.
  • 62
    [ROM]><N9005 XXUDMJ7 JB 4.3><27/11/13><Pre-Rooted STOCK ROM's><Odex/DeOdex><Odin/CWM>

    This is the Easiest way to root Samsung Galaxy Note 3 LTE (SM-N9005) KNOX 0x1!


    ATTENTION PLEASE:

    - All ROMs from post #1 & #2 WILL VOID YOUR WARRANTY!!! KNOX 0x1!!!

    Think twice before flashing.

    - You MUST keep your Region Code (XXU... or ZHU...), check your FW before flashing!!

    - If your KNOX is 0x1 you can use any Stock/Custom ROM/Recovery

    - Use Chainfire's CF-AutoRoot if you want to root your existing Stock ROM. (KNOX 0x1)

    - Custom Recovery is NOT included. If you need one, you will need to install it separately. (KNOX 0x1)

    - DO NOT use CF-AutoRoot for Pre-Rooted ROM's as it can mess things up!!
    Use it ONLY for OFFICIAL STOCK ROMs

    Main benefits of using this method are:

    - FULLY ROOTED
    - No need for Insecure Kernels.
    - Complete, Odin flashable Packages.
    - Can be used on Non-Rooted devices.
    - Binary Flash Counter will NOT increase
    - Use Wanam Xposed to keep SYSTEM/DEVICE as OFFICIAL
    - Only 1 file and you have a complete firmware including Root permission.
    - Fully working KIES & OTA updates (FYI: root will be lost after software update)​


    Flashing instructions:


    1. Install KIES or USB drivers from here
    2. Download and run Odin from here (v.3.04 is recomended)
    3. Make sure that ONLY AutoReboot & F.Reset Time is ticked in Odin options
    4. Download and extract one of Pre-Rooted ROM's
    5. Load extracted file (.tar.MD5) as PDA in Odin.
    6. Turn OFF your phone, Press&Hold POWER+VOLUME_DOWN buttons until phone boot into Download/Odin Mode
    7. Connect phone to the computer and WAIT for the drivers to be installed. You will see blue or yellow indicator in left top corner of Odin, with phone connected to port: COM:x
    8. Click START and wait until you see GREEN indicator [PASS], flashing is finished
    9. Unplug USB cable and enjoy.
    10. If your Device/System Status shows CUSTOM, use Wanam Xposed and tick "Fake System Status"

    TESTED!! Works like charm... :)

    Modifications:
    - latest su binaries
    - SuperSU.apk

    29.09.13

    Update regarding Titanium Backup and restoring data:

    Hey everyone! After restoring data with titanium backup, simply execute this from the terminal emulator:
    Code:
    su
    restorecon -R -v /data/data
    And all the problems would be fixed.


    CWM flashable ROM's has been moved to post #2!

    CSC packages for Odin has been moved to post #3!


    DO NOT MAKE ANY MIRRORS or TORRENTS PLEASE
    Android File HOST is a Multi-Server HOST, up to 8 MIRRORS AVAILABLE

    attachment.php


    DO NOT COPY or SHARE MY WORK WITHOUT PERMISSION​

    SM-N9005 Official Stock ROM's for Odin (KNOX 0x1):

    - Pre-Rooted
    - Unbranded
    - NO WIPE ROM's
    - No other modifications



    Model: SM-N9005 (4.3)
    PDA: XXUDMJ7
    PHONE: XXUDMJ7
    CSC: OXXDMJ4 (21 codes)
    Kernel: 3.4.0-2019540 (30.10)
    KNOX WARRANTY VOID - 0x1

    Build Date: 30.10.2013
    Changelist: 2019540
    Original Stock ROM: Download:<<< Hotfile >>>
    Pre-Rooted ROM: BOOTLOADER FREE Odex: Download: <<< Android Host >>>





    Model: SM-N9005 (4.3)
    PDA: XXUDMJ6
    PHONE: XXUDMJ4
    CSC: OXADMJ4 (5 codes)
    Kernel: 3.4.0-1937874 (21.10)
    KNOX WARRANTY VOID - 0x1

    Build Date: 21.10.2013
    Changelist: 1937874
    Original Stock ROM: Download:<<< Hotfile >>>
    Pre-Rooted ROM: BOOTLOADER FREE Odex: Download: <<< Android Host >>>





    Model: SM-N9005 (4.3)
    PDA: XXUBMJ1
    PHONE: XXUBMJ1
    CSC: OXXBMJ1 (21 codes)
    Kernel: 3.4.0-1628120 (01.10)
    KNOX WARRANTY VOID - 0x1

    Build Date: 01.10.2013
    Changelist: 1628120
    Original Stock ROM: Download: <<< Hotfile >>>
    Pre-Rooted ROM: Odex: <<< Android Host >>>




    Model: SM-N9005 (4.3)
    PDA: XXUBMI7
    PHONE: XXUBMI6
    CSC: OXXBMI4 (22 codes)
    Kernel: 3.4.0-1628120 (11.09)
    KNOX WARRANTY VOID - 0x1

    Build Date: 11.09.2013
    Changelist: 1628120
    Original Stock ROM (Odin): Download: <<< Hotfile >>>
    Pre-Rooted ROM: Downloads: <<< Android Host >>>



    more coming soon...



    If you find my threads HELPFUL, please click THANKS or get me a coffee by clicking DONATE
    It mean a LOT to me and it's always Appreciated!!!


    CREDITS and THANKS goes to:
    14
    STOCK/Modified ROM's - CWM/TWRP/PhilZ flashable

    Flashing instructions:


    1. Install Any Custom Recovery (Tested on CWM by Chenglu)
    2. Download any of Pre-Rooted ROM's
    3. Copy ZIP file to SD/ExtSDCard
    4. Turn OFF your phone, Press&Hold POWER+HOME+VOLUME_UP buttons until phone boot into Recovery
    5. Wipe DATA when coming from Odexed or Other Custom ROM
    6. Follow On-Screen instruction and "Install ZIP from SD/EXT Card"
    7. Reboot normally and enjoy!



    SM-N9005 Official Stock ROM's - CWM/TWRP/PhilZ flashable ZIP:
    - Pre-Rooted
    - Unbranded
    - KNOX FREE
    - Stock Kernel
    - NO WIPE ROM's
    - No other modifications
    - Modem is NOT included
    - Automatic wipe - Dalvik & Cache. No need to wipe it, only Data when coming from different FW




    Model: SM-N9005 (4.3)
    PDA: XXUDMJ6
    PHONE: NONE
    CSC: OXADMJ4 (5 codes)
    Kernel: 3.4.0-1937874 (21.10)
    Build Date: 21.10.2013
    Changelist: 1937874
    Original Stock ROM (Odin): Download: <<< Hotfile >>>
    Pre-Rooted ROM (CWM): Download: <<< Android Host >>>




    Model: SM-N9005 (4.3)
    PDA: XXUBMJ1
    PHONE: NONE
    CSC: OXXBMJ1 (21 codes)
    Kernel: 3.4.0-1628120 (01.10)
    Build Date: 01.10.2013
    Changelist: 1628120
    Original Stock ROM (Odin): Download: <<< Hotfile >>>
    Pre-Rooted ROM (CWM) - Downloads: <<< Android Host >>>




    Model: SM-N9005 (4.3)
    PDA: XXUBMI7
    PHONE: NONE
    CSC: OXXBMI4 (22 codes)
    Kernel: 3.4.0-1628120 (11.09)
    Build Date: 11.09.2013
    Changelist: 1628120
    Original Stock ROM (Odin): Download: <<< Hotfile >>>
    Pre-Rooted ROM (CWM): Downloads: <<< Android Host >>>



    more coming soon...

    SM-N9005 Modified Stock ROM's - CWM/TWRP/PhilZ flashable ZIP:

    - Pre-Rooted
    - Unbranded
    - DeOdexed
    - DeBloated
    - Zipaligned
    - Stock Kernel
    - KNOX FREE
    - SuperSlim (1.2 GB)
    - Modem is NOT included
    - NO WIPE ROM's but it's HIGHLY Recommended to WIPE DATA before flashing!!

    - Automatic wipe - Dalvik & Cache. No need to wipe it, only Data when coming from different FW
    - No other modifications
    --==Click the button for list of Removed Apps==--

    How to install: DO NOT INSTALL ANY OF THOSE APPS!!! Copy & paste into /system/app and restart your phone... That's it!! ;)
    AllSharePlay15.apk
    Blurb.apk
    ChatON_feature.apk
    ChatONV_J.apk
    CHS_J_Device_only.apk
    Chrome.apk
    Dropbox.apk
    Earth.apk
    Episodes.apk
    Flipboard.apk
    KNOXAgent.apk
    KNOXStore.apk
    InteractiveTutorial.apk
    Magazines.apk
    Match3VS.apk
    MusicLiveShare.apk
    PickUpTutorial.apk
    SamsungBooks.apk
    SamsungLearning.apk
    SamsungGames.apk
    SamsungHub.apk
    SHealth2.apk
    StoryAlbumWidget.apk
    TravelService.apk
    TravelWidget.apk
    TripAdvisor.apk
    YahoonewsPhone2013.apk
    YahoostockPhone2013.apk
    ......
    and many more, please download package for full list..



    Model: SM-N9005 (4.3)
    PDA: XXUDMJ7
    PHONE: NONE
    CSC: OXXDMJ4 (Custom MultiCSC - 24 codes)
    Kernel: 3.4.0-2019540 (30.10)
    Build Date: 30.10.2013
    Changelist: 2019540
    Original Stock ROM (Odin): Download:<<< Hotfile >>>
    Pre-Rooted ROM: (CWM): Download: <<< Android Host >>>
    Deleted apps (N9005_XXUDMJ7 - DEODEXED) - Downloads: <<< AFH >>>





    Model: SM-N9005 (4.3)
    PDA: XXUDMJ6
    PHONE: NONE
    CSC: OXADMJ4 (5 codes)
    Kernel: 3.4.0-1937874 (21.10)
    Build Date: 21.10.2013
    Changelist: 1937874
    Original Stock ROM (Odin): Download: <<< Hotfile >>>
    Pre-Rooted ROM (CWM): Download: <<< Android Host >>>





    Model: SM-N9005 (4.3)
    PDA: XXUBMJ1
    PHONE: NONE
    CSC: OXXBMJ1 (21 codes)
    Kernel: 3.4.0-1628120 (01.10)
    Build Date: 01.10.2013
    Changelist: 1628120
    Original Stock ROM (Odin): Download: <<< Hotfile >>>
    Pre-Rooted ROM (CWM) - Downloads: <<< Android Host >>>
    Deleted apps (N9005_XXUBMJ1 - DEODEXED) - Downloads: <<< Android Host >>>




    Model: SM-N9005 (4.3)
    PDA: XXUBMI7
    PHONE: NONE
    CSC: OXXBMI4 (22 codes)
    Kernel: 3.4.0-1628120 (11.09)
    Build Date: 11.09.2013
    Changelist: 1628120
    Original Stock ROM (Odin): Download: <<< Hotfile >>>
    Pre-Rooted ROM (CWM): Downloads: <<< Android Host >>> (FULL Version)
    Pre-Rooted ROM (CWM): Downloads: <<< Android Host >>> (SuperSlim)
    Deleted apps (N9005_XXUBMI7 - DEODEXED) - Downloads: <<< Android Host >>>



    more coming soon....



    DO NOT MAKE ANY MIRRORS or TORRENTS PLEASE
    Android File HOST is a Multi-Server HOST, up to 8 MIRRORS AVAILABLE

    attachment.php


    DO NOT COPY or SHARE MY WORK WITHOUT PERMISSION


    If you find my threads HELPFUL, please click THANKS or get me a coffee by clicking DONATE
    It mean a LOT to me and it's always Appreciated!!!


    11
    N9005XXUBMJ1 Pre-Rooted/Odex/KNOX FREE/Odin
    Upload in progress....
    Stay tuned ;)
    10
    Happy New Year!!!

    Guide for Pre-Rooted ROM's (applicable to many Samsung devices):

    You need Linux OS (Ubuntu 32/64 Bit) for Pre-Rooting Process:



    Preparation:
    1. Create a working folder, for example pre-rooted, download and extract THIS (64 Bit) file and copy/paste (simg2img & ext2simg) into working folder.
    2. Download SuperSu.zip from Chainfire's thread and extract all files to new folder, for example "root files". Copy/paste this folder into working folder.
    3. Download any Samsung FW and extract it. You'll have a single file xxxxxxxxx.tar.md5, extract it again to new folder (keep name of the folder same as name of your FW, xxxxxxxx , it makes things easier to work with).
    4. Go to the new folder and check if all files are there (5-10 files), look for system.img.ext4. If everything is there, copy/paste whole folder xxxxxxxx to your working folder /pre-rooted
    5. Move system.img.ext4 directly to the working folder: /pre-rooted/system.img.ext4.
    At this point, you should have following files/folders in working folder:
    /pre-rooted/system.img.ext4
    /pre-rooted/ext2simg
    /pre-rooted/simg2img
    /pre-rooted/xxxxxxx (folder with your FW)
    /pre-rooted/root files (folder with extracted files from SuperSU.zip)

    Pre-Rooting process:
    Open Terminal and navigate to the pre-rooted folder, for example: cd /home/*username*/pre-rooted.
    Step 1:
    Convert system.img.ext4 into a raw system partition that can be mounted under Linux as r/w partition - system.img.raw
    Type in Terminal and press Enter:
    Code:
    ./simg2img system.img.ext4 system.img.raw
    and wait until the process is finished, it takes few minutes....
    Step 2:
    Mount converted partition under Linux:
    Type in Terminal and press Enter:
    Code:
    mount -t ext4 -o loop system.img.raw /mnt
    Use any File Manager or just navigate to /mnt/.... and there you have full access to the system files.
    Step 3:
    Copy/paste or delete any files you want from/to system, for example root files:
    Superuser.apk -> /mnt/app/Superuser.apk
    su (binary) -> /mnt/xbin/su
    daemonsu (binary) -> /mnt/xbin/daemonsu
    .su (binary) -> /mnt/bin/.ext/.su
    recovery.sh -> /mnt/etc/install-recovery.sh
    libdummy.so -> /mnt/lib/libdummy.so (extra file, can work without it)
    Step 4:
    Setting up permissions. Use Terminal, type and press Enter after each line:
    Code:
    chmod 06755 /mnt/xbin/su
    chmod 06755 /mnt/bin/.ext/.su
    chmod 0755 /mnt/xbin/daemonsu
    chmod 0755 /mnt/etc/install-recovery.sh
    chmod 0644 /mnt/app/Superuser.apk
    chmod 0644 /mnt/lib/libdummy.so
    Step 5:
    Setting up SELinux markers (for JB 4.3 onwards). Use Terminal, type and press Enter after each line:
    Code:
    chown root.root /mnt/app/*
    chcon u:object_r:system_file:s0 /mnt/app/*
    Step 6:
    Rebuilding system partition back into system_new.img.ext4. Use Terminal, type and press Enter
    Code:
    ./ext2simg -v ./system.img.raw ./system_new.img.ext4
    Partition size will be automatically adjusted, according to the size of system.img.raw (it takes few minutes to finish)
    Now, just copy/paste system_new.img.ext4 to your FW folder - xxxxxxx - and rename it back to system.img.ext4.

    Repacking all files back to new_xxxxxxx.tar.md5:
    1. Use Terminal and navigate to your FW folder: /pre-rooted/xxxxxxx
    2. Packing it all up:
    Use Terminal, type and press Enter:
    Code:
    tar -H ustar -c aboot.mbn boot.img cache.img.ext4 hidden.img.ext4 modem.bin NON-HLOS.bin recovery.img rpm.mbn sbl1.mbn sbl2.mbn sbl3.mbn system.img.ext4 tz.mbn > I9505XXXXXXXX-PRE-ROOTED.tar
    this is example of complete FW for GT-I9505, all files (bootloaders, modems, etc..) are listed and included. Check your FW folder for correct list of files from your FW.
    3. Generating and adding .md5 checksum:
    Use Terminal, type and press Enter after each line:
    Code:
    md5sum -t I9505XXXXXX-PRE-ROOTED.tar >> I9505XXXXXXX-PRE-ROOTED.tar
    mv I9505XXXXXXX-PRE-ROOTED.tar I9505XXXXXXX-PRE-ROOTED.tar.md5
    That's it!! All done, you can now use Odin and flash your new, pre-rooted FW.
    NOTE: Make sure that you have Original FW on your HDD, just in case if your new FW won't boot up! :p
    8
    DeOdex Testing - PASS!!

    After initial tests I'm happy to announce that CWM flashable DeOdexed ROM is Online!! :)

    DOWNLOAD: Android Host

    Massive THANKS to TESTERS!! - ttav, m3dd0g, Guitarfreak26, galinha, joechan


    enjoy!!

    ==================

    Latest update, it works on N9005 Hong-Kong Version (ZHU...) :)