[Q] Need Help Ramos W41 bootloop - General Questions and Answers

Hi..
I have a Ramos W41
- quadcore ATM 7025
- RAM 1 GB DDR3
- GPU Vivante GC1000
and now my tablet is bootloop after I upgraded the OS to 4.2.2
I used tablet product tool to flashed it.
I forgot to enter the "ramosvendorapk.img" when I reflash
I try to reflash, the tablet doesn't detected on my PC, and now it's just stuck at the logo, and it can't to enter the recovery mode
please help me to solve this
thank you

Arhick said:
Hi..
I have a Ramos W41
- quadcore ATM 7025
- RAM 1 GB DDR3
- GPU Vivante GC1000
and now my tablet is bootloop after I upgraded the OS to 4.2.2
I used tablet product tool to flashed it.
I forgot to enter the "ramosvendorapk.img" when I reflash
I try to reflash, the tablet doesn't detected on my PC, and now it's just stuck at the logo, and it can't to enter the recovery mode
please help me to solve this
thank you
Click to expand...
Click to collapse
can you get it into recovery?

Try rebooting into recovery.. Then wipe data and cache.
Sent from my Qmobile Noir A10 using Tapatalk

keifus.rahn said:
can you get it into recovery?
Click to expand...
Click to collapse
mrtaim3 said:
Try rebooting into recovery.. Then wipe data and cache.
Sent from my Qmobile Noir A10 using Tapatalk
Click to expand...
Click to collapse
No, this tablet cannot enter the recovery mode
when I see in the buildprop, the recovery mode was disable by its factory, I also tried to enable
but still can't recovery

you must contact to the developer of this Tablet.

mrtaim3 said:
you must contact to the developer of this Tablet.
Click to expand...
Click to collapse
okay..don't you have a solution ?
I tried to contact the developer, but they don't reply yet..
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}

Ur device is not in use of many ppl so its hard to find the solution of it.. The only way u can reset ur device is by going into recovery. or try resetting ur device through tablet tool. Or try reflashing.. Switch off the tablet connect it with usb.. And wait till it detects. Make sure u have installed ur tablet drivers.
Sent from my Qmobile Noir A10 using Tapatalk

mrtaim3 said:
Ur device is not in use of many ppl so its hard to find the solution of it.. The only way u can reset ur device is by going into recovery. or try resetting ur device through tablet tool. Or try reflashing.. Switch off the tablet connect it with usb.. And wait till it detects. Make sure u have installed ur tablet drivers.
Sent from my Qmobile Noir A10 using Tapatalk
Click to expand...
Click to collapse
thank you for your responds
my tablet is not detected on my PC, and when usb connected to my computer it's just charging..
the usb drivers is installed.
and this tablet not supported recovery mode, I already tried.

Arhick said:
thank you for your responds
my tablet is not detected on my PC, and when usb connected to my computer it's just charging..
the usb drivers is installed.
and this tablet not supported recovery mode, I already tried.
Click to expand...
Click to collapse
I feel sorry that i couldn't help you.. Take it to any repair shop or just wait for the developers to respond.

Arhick said:
Hi..
I have a Ramos W41
- quadcore ATM 7025
- RAM 1 GB DDR3
- GPU Vivante GC1000
and now my tablet is bootloop after I upgraded the OS to 4.2.2
I used tablet product tool to flashed it.
I forgot to enter the "ramosvendorapk.img" when I reflash
I try to reflash, the tablet doesn't detected on my PC, and now it's just stuck at the logo, and it can't to enter the recovery mode
please help me to solve this
thank you
Click to expand...
Click to collapse
So I've did some Research on your device and it seems like everyone is having the same problem and there seems that a fix hasn't been Resolved yet. But here are a few things you can try to resolve this issue... (1) If you can take the battery out plug it in to the charger / Then take the battery out and unplug /\ This is to make shure you have no power left in the device wait about a minit then place the battery back in and press the volume down for about 30 seconds and the press and hold the power button while holding the volume down key When the screen lights up let go of the power and keep holding volume down for 15 seconds that should give you some options on restoring your device if that dont work then try doing the same with vol up instead of down or try holding both volume keys and ive noticed that there is a restart hole next to the volume keys if so do the charger steps but with out the vol keys....Find somthing to press and hold the reset button and while holding the reset button power on the device and see if any luck..
(2) PC NEEDED WITH SDK if you have a pc and you have the android sdk set up u can try connecting to your device using / adb /echo/ if you dont have the sdk you can get it here with a tut on using adb= http://developer.android.com/sdk/index.html now if your ready here is a way to connect to your device threw adb... Using ADB as solution
ADB can be used to access the phone while booting, be aware that some bootloops make it unable to use ADB since they do not go further then the manufacturer logo. (In new CWM versions it’s possible to use adb)
The only tricky part about using ADB with bootloops is that you have to do it on the right time, this is different from every device, but normally it’s after the manufacturer logo that the partitions get mounted. The easiest way to enter your phone in this part is using a batch script that monitors the state of your device and connects directly when possible.
I use this script for example, called ondemand.bat (requires adb.exe and the 2 dlls)
1 @ECHO off
2 cd /d %~dp0
3 echo.
4 echo Waiting for device…
5 adb wait-for-device
6 echo.
7 adb -d shell stop
8 adb push mycwmfix.zip /sdcard/mycwmfix.zip
9 adb reboot recovery
Linux Version (ondemand.sh):
1 #!/system/bin/sh
2 echo " "
3 echo "Wating for device..."
4 ./adb wait-for-device
5 echo " "
6 ./adb -d shell stop
7 ./adb push mycwmfix.zip /sdcard/mycwmfix.zip
8 ./adb reboot recovery
This script will wait for the device to become ready, when it’s ready it freeze the device, so the script has more time to push the file (instead of keep rebooting). Then it will push the specified cwmfix zip to your sdcard, and after that it will reboot in recovery so you can install the cwm fix you made. You can also make an batch script that pushes the files automatically to your phone, here is an example:
(1 @ECHO off
(2)cd /d %~dp0
(3)echo.
(4)echo Waiting for device...adb wait-for-device
(5)echo.
(6)adb -d shell stop
(7)adb -d shell su -c "mount -o remount rw /system"
(8)adb push framework-res.apk /system/framework/framework-res.apk
(9)adb -d shell chmod 644 /system/framework/framework-res.apk
(10)adb push SystemUI.apk /system/app/SystemUI.apk
(11)adb -d shell chmod 644 /system/app/SystemUI.apk
(12)adb reboot
(13)Linux version:
1#!/system/bin/sh
2echo " "
3echo "Waiting for device..."
4./adb wait-for-device
5echo " "
6./adb -d shell stop
7./adb -d shell su -c "mount -o remount rw /system"
8./adb push framework-res.apk /system/framework/framework-res.apk
9./adb -d shell chmod 644 /system/framework/framework-res.apk
10./adb push SystemUI.apk /system/app/SystemUI.apk
11./adb -d shell chmod 644 /system/app/SystemUI.apk
12./adb reboot
This script will wait for the device to become ready, when it’s ready it freeze the device, so the script has more time to push the file (instead of keep rebooting). Then it will push framework-res.apk and SystemUI.apk to the directory it belongs to, after that it changes the permissions of the files to RW-R-R (644) and then it will reboot.
Please note that on some devices the command “su -c” cannot be used after using the “stop” command, it gives an error then (Segmentation Fault).
What you can do to prevent this is adding “adb remount” just under the “adb wait-for-device” line, and remove the “adb -d shell su -c “mount -o remount rw /system” line.
Save the script and run it again.
You are probably able to fix your bootloop with this guide, in some rare cases some other partitions could be damaged, then I advice you to install the stock rom (which is no .zip in most cases)
Once you master the fixing of bootloops you can fix your phone independently !
You can try this if all else fails GOOD LUCK SIR :fingers-crossed: http://www.mediafire.com/?9oghmlgoqpm44qe

Related

{TUToRIAL]HOW TO DEODEX I9001 FOR NOoBS

HOW TO DEODEX YOUR I9001
THIS IS A SIMPLE GUIDE FOR THE NOOBS SO THAT THEY CAN DEODEX THERE I9001
What you'll need:
A Windows based machine
JDK
ANDROID SDK
LATEST XULTIMATE
And A Rooted I9001
Process:
1. Unzip xUltimate v2.2, and launch "Main.exe"
2. If everything goes well xUltIMATE should recognize the phone and make a connection. You now should see a list of options.
3. Run option 1. After option 1 is done, run option 2.
4. Now these well take a while. Run option 3.
5. IMPORTANT: After you have run option 3
6. Now run option 4, and wait.
7. Exit xUltimate, and put the phone in USB mass storage.
8. Go back into the xUltimate folder and copy "done_frame", and "done_app", and move them to the root of the internal sdcard not in the external sd.
9. Now Put the phone in USB DEBUGGING mode and DON'T PUT THE PHONE IN MASS STORAGE MODE
10. Open a command prompt, and do the following:
Code:
$ su
# stop
# mount -o remount rw /system
# rm /system/app/*.odex
# rm /system/framework/*.odex
# cp /sdcard/done_app/* /system/app/
# cp /sdcard/done_frame/* /system/framework/
# mount -o remount ro /system
# reboot
Credits to -
Xeodoxus for xultimate
Ghostlypickel for this guide
DO THIS AT YOUR OWN RISK
IF YOU LYK MY POST THEN PLEASE PRESS THE THANKS BUTTON
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
RESERVED...
RESERVED..........
For Android 2.3.x using this command
busybox cp /sdcard/done_app/* /system/app/
busybox cp /sdcard/done_frame/* /system/framework/
Maybe a stupid question but what are the benefits when I'm deodex my i9001?
Sent from my GT-I9001 using XDA App
oudbrood said:
Maybe a stupid question but what are the benefits when I'm deodex my i9001?
Sent from my GT-I9001 using XDA App
Click to expand...
Click to collapse
it is easier to make themes/mods for deodexed firmware
@ oudbrood
and you will got more space in system
Thanks for the reply's.
I get smarter every day
Sent from my GT-I9001 using XDA App
Not understand something here...does the phone always on usb? No plug in n plug out usb? The commant have to type where? Pc? Like this...start-run-cmd-enter?
GT-I9001 Adrenaline Shot - powered by Instanet free edition
Lol, thread looks familiar
kkrraazzyy said:
3. Run option 1. After option 1 is done, run option 2.
4. Now these well take a while. Run option 3.
5. IMPORTANT: After you have run option 3
6. Now run option 4, and wait.
Click to expand...
Click to collapse
Can be done in one step (option 5 - Pull and Deodex all).
Note that deodexing (steps 3 and 4) sometimes returns errors. Just repeat the procedure and it will work a second (or third) time...
kkrraazzyy said:
10. Open a command prompt, and do the following:
Click to expand...
Click to collapse
You can also make a batch file to move files from the xUltimate folder onto your device (put this patch-file into the xUltimate folder - this will not use the sdcard and push the files directly onto the device!). Something like this:
Code:
@echo off
jar\adb -d remount
jar\adb -d push done_app /system/app
jar\adb -d push done_frame /system/framework
echo all ok? going to remove *.odex files...press a key to continue...
pause >nul
jar\adb -d shell rm /system/app/*.odex
jar\adb -d shell rm /system/framework/*.odex
jar\adb -d remount
echo rebooting...press a key to continue...
pause >nul
jar\adb -d reboot
pause
---------- Post added at 08:31 AM ---------- Previous post was at 08:29 AM ----------
pyronia said:
Not understand something here...does the phone always on usb? No plug in n plug out usb? The commant have to type where? Pc? Like this...start-run-cmd-enter?
Click to expand...
Click to collapse
Yes, running Main.exe and deodexing requires the device to be plugged into USB. Using ADB also uses USB, although you can do it from your device too with shell tools. And if you want an automated DOS script for moving the files using ADB, see above
---------- Post added at 08:42 AM ---------- Previous post was at 08:31 AM ----------
One more thing: you need BusyBox too:
https://market.android.com/details?id=stericson.busybox
do i have to flash again tweak like adrenaline shot after deodexing???
pyronia said:
do i have to flash again tweak like adrenaline shot after deodexing???
Click to expand...
Click to collapse
No, it does not touch any of those (Adrenaline, Root, CWM, etc.)
Hahaha...i just back from bootloop....i think it will not workout for me...
GT-I9001 Adrenaline Shot - powered by Instanet free edition
pyronia said:
Hahaha...i just back from bootloop....i think it will not workout for me...
GT-I9001 Adrenaline Shot - powered by Instanet free edition
Click to expand...
Click to collapse
Lol, glad you're still laughing so how did you do it? On which base-ROM? I've done it several times and never had any issues...
nikagl said:
Lol, glad you're still laughing so how did you do it? On which base-ROM? I've done it several times and never had any issues...
Click to expand...
Click to collapse
ZSKP6...it stuck when i try to use terminal modulator...all apps fc then bam!!! Mr. Bootloop came out after remove battery....
GT-I9001 Adrenaline Shot - powered by Instanet free edition
So...using shell other than adb doesn't work tx 4 testing )
Sent from my GT-I9001 using XDA App
It doesn't work with the shell on your mobile since when u type "stop" it totally freezes.. ADB SHELL IS REQUIRED. the poster might want to say that since this is just a 100% copy of the deodex I9003 tutorial
when i tried it my phone got in a bootloop tho.. but I will try later again
I used ADB and it works. No bootloop or errors
to deodex always use ADB
and be sure that you have busybox installed on your device
otherwise the commands cant be executed
Guys, what am I doing wrong?
- Rooted XXKPS
- Ran main.exe ok with all steps.
- All okay until "(busybox) cp /sdcard/done_app/* /system/app/"
It can't find my sdcard.. I'm sure I have the files placed in the root of the internal sdcard.

[Root][Guide] Rooting ICS 4.04 leak from the 2.3.6

FILES WERE ATTACHED. I HOPE IT IS VIRUS FREE BUT I CANNOT PROMISE AS THERE MAY BE SOME TROJANS BECAUSE I DOWNLOADED AT SOMEWHERE. You've been warned. That's why I placed the list of files originally.
0. Your system must be in version 2.3.6 or below, which can be rooted by motofail. Do double wipe before you flash.
a) Place the following files in the same folder:
adb.exe
AdbWinApi.dll
AdbWinUsbApi.dll
motofail
su
Superuser.apk (script default) / supersu.apk
b)(optional) Prepare the modified RSDlite which can flash any roms...
c) Prepare the Motorola driver and install it.
d) use notepad to create a script (root.bat)(provided below) and save it in the same folder with the files above.
1. Connect your phone to the computer. You'd better install the drivers for your phone first. Turn on "USB debugging" and connect it as "charging mode".
2. You CANNOT unplug your usb cable and you CANNOT close the rooting program/script in the whole process.
3. Run the root.bat.
4. it will push some files into your phone and reboot your phone.
5. You will see the caution symbol with the Android robot.
6a. Flash your rom by the stock recovery
OR
6b(i). Pull the battery out.
6b(ii). HOLD the volume-down button and put the battery back.(Power ON) It will boot into the AP mode. (If you can see the blank secreen but not showing "USB CONNECTED, FLASH OK" , release the volume button or retry)
6b(iii). run the RSDlite to flash your rom
7. The phone will reboot and update few(1-3) times.
8. The phone will be rooted after the final reboot.
9. Take out your SD card and do factory reset. (The root will be kept) (I found this may solve some problems)
Script is here :
Code:
@echo off
cls
adb kill-server
adb wait-for-device
adb.exe shell mv /data/local/12m /data/local/12m.bak
adb.exe shell ln -s /data /data/local/12m
adb.exe reboot
adb.exe wait-for-device
adb shell rm -r /data/local/tmp
adb shell mkdir /data/local/tmp
adb push motofail /data/local/tmp
adb shell chmod 755 /data/local/tmp/motofail
adb shell /data/local/tmp/motofail exploit
adb reboot
adb wait-for-device
adb remount
adb.exe shell rm /data/local/12m
adb.exe shell mv /data/local/12m.bak /data/local/12m
adb.exe shell mv /data/local.prop /data/local.prop.bak
adb.exe shell "echo 'ro.kernel.qemu=1' >> /data/local.prop"
adb.exe reboot recovery
echo The phone will boot into the recovery mode
echo please follow the tutorial for the rooting process
echo do not close this window
ping -n 8 127.1>nul
adb wait-for-device
adb remount
adb push su /system/bin
adb shell chmod 4755 /system/bin/su
adb push Superuser.apk /system/app
adb shell chmod 666 /system/app/Superuser.apk
adb shell rm -r /data/local/tmp
adb shell mkdir /data/local/tmp
echo Your phone is rooted!!!
PAUSE
The script is provided by the crc3334404 at gfan.com .Some text is modified by me.
The guide is mainly based on his guide too. (with several modification and addon etc)
Tested on ME865
attach the required files
Edit:- thanks will try
may be i am noob but when i run the bat file it say
C:\root>adb wait-for-device
* daemon not running. starting it now *
* daemon started successfully *
Click to expand...
Click to collapse
and stays there waited for 15 min but nothing happend
EDIT:- as i said i am noob, forgot to tick usb debugging
shamsud said:
may be i am noob but when i run the bat file it say
and stays there waited for 15 min but nothing happend
Click to expand...
Click to collapse
probably bad drivers or something
shamsud said:
may be i am noob but when i run the bat file it say
and stays there waited for 15 min but nothing happend
EDIT:- as i said i am noob, forgot to tick usb debugging
Click to expand...
Click to collapse
So sorry that I didn't mention originally.
Actually I can't sure whether it works in MB865. May you please tell us after trial. Thanks
Results?
Sent from my Atrix II using xda premium
lilhaiti said:
Results?
Sent from my Atrix II using xda premium
Click to expand...
Click to collapse
Id really like to know as well! Haha
sorry guys am unable to flash with stock recovery it say "assert failed" i downloaded the file from below thread
http://forum.xda-developers.com/showthread.php?t=1684443
Click to expand...
Click to collapse
shamsud said:
sorry guys am unable to flash with stock recovery it say "assert failed" i downloaded the file from below thread
Click to expand...
Click to collapse
do you have a MEARET phone? are you fully stock?
fully stock but Searet rom, now loading mearet rom...
EDIT:= Finally got the rooted ics the above method works
shamsud said:
fully stock but Searet rom, now loading mearet rom...
EDIT:= Finally got the rooted ics the above method works
Click to expand...
Click to collapse
Could you upload a backup.i need it to work on getting cm9 working with data. I cant just use the ics update because its only patch files.i need the already patched files.pm me the link to the upload if u can upload it as soon as possible. I just need the system.ext3.tar
Sent from my MB865 using xda premium
rdavisct said:
Could you upload a backup.i need it to work on getting cm9 working with data. I cant just use the ics update because its only patch files.i need the already patched files.pm me the link to the upload if u can upload it as soon as possible. I just need the system.ext3.tar
Sent from my MB865 using xda premium
Click to expand...
Click to collapse
He sent me a PM I told him to do a cwm backup and give us the system and also to dump boot with dd in case we need it for anything
I rooted failed....
It stock after RDS 4.0.4....
I plug the usb and all drivers are ok, then press anykey, then.....it stock...
My OS windows 7 64bit...
dickluo said:
I rooted failed....
It stock after RDS 4.0.4....
I plug the usb and all drivers are ok, then press anykey, then.....it stock...
My OS windows 7 64bit...
Click to expand...
Click to collapse
Questions may help:
1. did you flash it back to 2.3.6 First?
2. Did you root the 2.3.6 successfully by the batch?
3. Flashed the 4.0 after root with no Window closed?
4. Always connected with usb?
5. Usb debugging enabled?
6. No superuser.apk? May be you don't need to do factory reset after rooting. Please let us kvow.
If all yes, please tell us your 2.3.6 version too. E. G. 55.109.xxx
Sent from my ME865 ICS4.0 using XDA premium.
Double post, deleted
shamsud said:
fully stock but Searet rom, now loading mearet rom...
EDIT:= Finally got the rooted ics the above method works
Click to expand...
Click to collapse
Which cheesecake rom did you start with?
Sent from my ME865 ICS4.0 using XDA premium.
4.0.4 drains battery very fast
Two observations after testing ICS on MB865
1/ battery drains twice as fast for ICS 4.04 compared to GB 3.6.6
2/ Screen slower response
austin_boy said:
Two observations after testing ICS on MB865
1/ battery drains twice as fast for ICS 4.04 compared to GB 3.6.6
2/ Screen slower response
Click to expand...
Click to collapse
Never tried GB 3.6.6 and am afraid it doesn't exist.
My battery is ok:
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
xanadu said:
Never tried GB 3.6.6 and am afraid it doesn't exist.
My battery is ok:
Click to expand...
Click to collapse
Maybe because you are on T-mobile and don't use 3G
socialx said:
0. Your system must be in version 2.3.6 or below, which can be rooted by motofail. Do double wipe before you flash.
Click to expand...
Click to collapse
Can anybody help me to find 2.3.6 firmware for ME865?

root auxus core x2 3g using Android Debug Bridge ADB

Build Properties of Auxus Core X2 3G contains the ro.build.user=root by default firmware update and also Default Properties contains ro.secure=0, ro.debuggable=1. So rooting the devices made very easy.
The following are the things to do to get root access in the front end
Update the binary of the Superuser
Setting the chown & chmod to the Superuser binary
Install the Superuser.apk
Optional:Installing the Root Checker & Root Unistaller
The following are the files required to do the above
ADB Driver for the Rockchip board (Auxus Core X2 Shipped with RK3066)
ADB file & ADB library files
Latest Superuser binary & apk files
Optional:Rootchecker & Root Uninstaller files
Source:
ADB Driver : XDA Post (http://78.140.134.121/d/6ea124157e9cda25ab1707cbcba7/usb_driver.zip)
ADB Files : http://forum.xda-developers.com/showthread.php?t=1987280
SU Files : http://downloads.androidsu.com/superuser/
Optional:RootCheck: http://joeykrim.com/
Optional: RootUnistaller:http://www.apkmania.co/2012/12/root-uninstaller-pro-v32-apk.html
Customizing the folder for the Auxus
Create folder e.g., C:\Auxus\
Extract the ADB files and Copy the adb.exe, AdbWinApi.dll, AdbWinUsbApi.dll to Auxus
Extract the Superuser files and Copy the \system\app\Superuser.apk and \System\bin\su to Auxus
Optional:Also place the RootCheck & RootUnistaller apk
Creating batch file named ROOT.bat
Creating batch file : ROOT.bat
The following code to be added to batch file
Code:
echo off
echo Check list of devices connected
adb devices
pause
adb shell mv /data/local/tmp /data/local/tmp.bak
adb shell ln -s /data /data/local/tmp
echo Rebooting 1/3
adb reboot
echo After Reboot to home screen unlock and press any key
pause
echo Setting Kernel Properties
adb shell rm /data/local.prop > nul
adb shell "echo \"ro.kernel.qemu=1\" > /data/local.prop"
echo Rebooting 2/3
adb reboot
echo After Reboot to home screen unlock and press any key
pause
adb shell id
pause
echo ADB Mounting root drive
adb remount
echo Pushing Superuser files
adb push su /system/xbin/su
adb shell chown 0.0 /system/xbin/su
adb shell chmod 06755 /system/xbin/su
echo Removing changes except ROOT
adb shell rm /data/local.prop
adb shell rm /data/local/tmp
adb shell mv /data/local/tmp.bak /data/local/tmp
echo Installing application
adb push superuser.apk /system/app/superuser.apk
echo Rebooting 3/3
adb reboot
echo ROOTED
pause
Also append below code if optionals downloaded
Code:
echo ADB Mounting root drive
adb remount
echo Installing Root Check & Root Uninstall
adb push Root_Uninstaller_Pro.apk /system/app/Root_Uninstaller_Pro.apk
adb push RootCheckPro.apk /system/app/RootCheckPro.apk
echo Done
pause
echo Rebooting
adb reboot
echo After Reboot to home screen unlock and press any key
pause
Steps to root
Install the ADB driver by double clicking the DPInst-32bit.exe
Now windows will prompt for the Driver security - Click Install anyway to proceed
Now connect the Auxus Core X2 3G in USB Debugging mode, the driver will be identified by windows (if not restart)
Now run the ROOT.bat (Run as Administrator)
The tablet will be reboot 3 times (if optional files used reboot 4 times)
Now run the ROOT.bat file and Auxus Core X2 3G rooted successfully.
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
Disclaimer :
Though tested many times with my tablet and the post drafted carefully. Kindly Backup data before proceed; All the files download from various link from internet and the attachment (Auxus.rar) contains the combination of them. Screenshots generated by author.
ROOT AT YOUR OWN RISK. Author is not responsible for what you do on your device. Author is not responsible for liability of any kind.
combined attachment included
Update: Auxus.rar is combination made from the above said link and with root batch files. ROOT AT YOUR OWN RISK. Author is not responsible for what you do on your device. Author is not responsible for liability of any kind.
Thanks a bunch!!
I will try this method on my corex2 this weekend and let you know the result. Thanks a lot!:good:
my tabs back camera is very slow and lagging in preview, does anyone having corex2 3g can confirm?
Rear camera- laggy- known issue
guyton100 said:
my tabs back camera is very slow and lagging in preview, does anyone having corex2 3g can confirm?
Click to expand...
Click to collapse
Yes, this is a known issue with the CoreX2. Lets hope that they will fix this issue with future firmware updates.
Please tell me how to unroot the same
Kudremukh said:
Please tell me how to unroot the same
Click to expand...
Click to collapse
muruggan_a has reported a post.
Reason:
Hi Friends,
I have done a pre-booking of X2 3G, i have faced the following issues
1) I was unable to send any 2010 MS office documents from win 7 laptop to auxus x2 3g
2)Even after i paired my tablet with my laptop, i cannot connect the media service from my tablet to laptop using bluetooth
3)Nokia BT head set doesnt get paired
And my last query is if i can root the device whether i can use 3G dongle instead of using SIM slot?
Please help me,
I have handedover to iberry service center and asked for replacement because of the bluetooth issue which i mentioned above. I got the replacement device but that also have the same problem. The new device had some scratches behind so given them back and asked for replacement.
Device Not found
When I oopen ROOT.bat In,
Win 8 it says error:device not found
Win 7 it says path not recognized or something like that
plz help me how to fix it and the
ADB unknown USB driver you gave when i open it win rar says that the file is corrupted or what i dont know
plz help me here:crying:
Will this work for Auxe CoreX4?
skv_vlr_mech said:
Build Properties of Auxus Core X2 3G contains the ro.build.user=root by default firmware update and also Default Properties contains ro.secure=0, ro.debuggable=1. So rooting the devices made very easy.
The following are the things to do to get root access in the front end
Update the binary of the Superuser
Setting the chown & chmod to the Superuser binary
Install the Superuser.apk
Optional:Installing the Root Checker & Root Unistaller
The following are the files required to do the above
ADB Driver for the Rockchip board (Auxus Core X2 Shipped with RK3066)
ADB file & ADB library files
Latest Superuser binary & apk files
Optional:Rootchecker & Root Uninstaller files
Source:
ADB Driver : Unknown (http://78.140.134.121/d/6ea124157e9cda25ab1707cbcba7/usb_driver.zip)
ADB Files : http://forum.xda-developers.com/showthread.php?t=1987280
SU Files : http://downloads.androidsu.com/superuser/
Optional:RootCheck: http://joeykrim.com/
Optional: RootUnistaller:http://www.apkmania.co/2012/12/root-uninstaller-pro-v32-apk.html
Customizing the folder for the Auxus
Create folder e.g., C:\Auxus\
Extract the ADB files and Copy the adb.exe, AdbWinApi.dll, AdbWinUsbApi.dll to Auxus
Extract the Superuser files and Copy the \system\app\Superuser.apk and \System\bin\su to Auxus
Optional:Also place the RootCheck & RootUnistaller apk
Creating batch file named ROOT.bat
Creating batch file : ROOT.bat
The following code to be added to batch file
echo off
echo Check list of devices connected
adb devices
pause
adb shell mv /data/local/tmp /data/local/tmp.bak
adb shell ln -s /data /data/local/tmp
echo Rebooting 1/3
adb reboot
echo After Reboot to home screen unlock and press any key
pause
echo Setting Kernel Properties
adb shell rm /data/local.prop > nul
adb shell "echo \"ro.kernel.qemu=1\" > /data/local.prop"
echo Rebooting 2/3
adb reboot
echo After Reboot to home screen unlock and press any key
pause
adb shell id
pause
echo ADB Mounting root drive
adb remount
echo Pushing Superuser files
adb push su /system/xbin/su
adb shell chown 0.0 /system/xbin/su
adb shell chmod 06755 /system/xbin/su
echo Removing changes except ROOT
adb shell rm /data/local.prop
adb shell rm /data/local/tmp
adb shell mv /data/local/tmp.bak /data/local/tmp
echo Installing application
adb push superuser.apk /system/app/superuser.apk
echo Rebooting 3/3
adb reboot
echo ROOTED
pause
Also append below code if optionals downloaded
echo ADB Mounting root drive
adb remount
echo Installing Root Check & Root Uninstall
adb push Root_Uninstaller_Pro.apk /system/app/Root_Uninstaller_Pro.apk
adb push RootCheckPro.apk /system/app/RootCheckPro.apk
echo Done
pause
echo Rebooting
adb reboot
echo After Reboot to home screen unlock and press any key
pause
Steps to root
Install the ADB driver by double clicking the DPInst-32bit.exe
Now windows will prompt for the Driver security - Click Install anyway to proceed
Now connect the Auxus Core X2 3G in USB Debugging mode, the driver will be identified by windows (if not restart)
Now run the ROOT.bat (Run as Administrator)
The tablet will be reboot 3 times (if optional files used reboot 4 times)
Now run the ROOT.bat file and Auxus Core X2 3G rooted successfully.
Disclaimer :
Though tested many times with my tablet and the post drafted carefully. Kindly Backup data before proceed; All the files download from various link from internet and the attachment (Auxus.rar) contains the combination of them. Screenshots generated by author.
ROOT AT YOUR OWN RISK. Author is not responsible for what you do on your device. Author is not responsible for liability of any kind.
Click to expand...
Click to collapse
Will the above procedure work for the Corex4 as well?
guyton100 said:
my tabs back camera is very slow and lagging in preview, does anyone having corex2 3g can confirm?
Click to expand...
Click to collapse
yes, it is there, but front camera is good. I posted support query in manf webpage and searching the firm update to make custom rom
cdwarak said:
Will the above procedure work for the Corex4 as well?
Click to expand...
Click to collapse
try root methods of Samsung Exynos 4412 for CoreX4 3g
iNOXIA2012 said:
When I oopen ROOT.bat In,
Win 8 it says error:device not found
Win 7 it says path not recognized or something like that
plz help me how to fix it and the
ADB unknown USB driver you gave when i open it win rar says that the file is corrupted or what i dont know
plz help me here:crying:
Click to expand...
Click to collapse
If Root.bat not worked manual use the code as mentioned in the thread.
I'm using windows 7 only and also verified with the XP.
Try downloading the files from source links. If device not recognized then it is the issue of the USB driver installation; Also refer the Screenshots and steps in the post
Kudremukh said:
Please tell me how to unroot the same
Click to expand...
Click to collapse
in command prompt, path to the adb folder
adb remount
adb shell rm /system/app/superuser.apk
adb shell rm /system/bin/su
adb reboot
and so on...
!!!Rooted!!! This method works like a charm. Thanks man!! Trying to figure out if we have cwm recovery for corex2. I tired a couple of them meant for other rockchip 3066 devices but no dice.
clockworkmod-recovery-for-auxus-core-x2
s.rahus said:
!!!Rooted!!! This method works like a charm. Thanks man!! Trying to figure out if we have cwm recovery for corex2. I tired a couple of them meant for other rockchip 3066 devices but no dice.
Click to expand...
Click to collapse
Check out for CWM
http://forum.xda-developers.com/showthread.php?p=37584364#post37584364
Link Error
ADB Driver URL that you gave wont work gives me Error
iNOXIA2012 said:
ADB Driver URL that you gave wont work gives me Error
Click to expand...
Click to collapse
Please find attachment file that i downloaded from the link what i mentioned in first post
skv_vlr_mech said:
please find attachment file that i downloaded from the link what i mentioned in first post
Click to expand...
Click to collapse
thank you so much
Great It worked flawlessly. I wasn't able to root using moborobo or Zhuo. But this method worked. Thanks
Has it got GPS or not???
Hi,
Can anyone please tell whether Auxus core X2 3G has got inbuild GPS or not.

ClockworkMod Recovery for Auxus Core X2 3G

ClockworkMod Recovery is alternate recovery mode for the android pre-installed devices. The Auxus CoreX2 is shipped with 4.1.1 and without recovery images.
The following is the steps to flash the CWM Recovery to the Iberry Auxus CoreX2
I tried the RK30 Genric Image as just need to backup and restore options.
Steps
Download the CWM Image
Extract CWN Image to the ADB folder (ADB Driver for the Rockchip board)
Connect phone with USB debugging mode
Using ADB push command push the flash_image & recovery.img to /dev/ folder in device
Code:
adb push flash_image /dev/
adb push recovery.img /dev/
Now flash recovery image to recovery partition as follows
Code:
adb shell
chmod 755 /dev/flash_image
/dev/flash_image recovery /dev/recovery.img
chmod 644 /system/etc/install-recovery.sh
to check the recovery use below command
Code:
adb reboot recovery
Source for CWM Image : http://files.androtab.info/rockchip/rk3066/20130203/RK30GENERIC_CWM.zip
Root/Flash AT YOUR OWN RISK. Author is not responsible for what you do on your device. Author is not responsible for liability of any kind.
Rooting Steps for Auxus CoreX2 3g / Rockchip :http://forum.xda-developers.com/showthread.php?t=2126534
skv_vlr_mech said:
ClockworkMod Recovery is alternate recovery mode for the android pre-installed devices. The Auxus CoreX2 is shipped with 4.1.1 and without recovery images.
The following is the steps to flash the CWM Recovery to the Iberry Auxus CoreX2
I tried the RK30 Genric Image as just need to backup and restore options.
Steps
Download the CWM Image
Extract CWN Image to the ADB folder (ADB Driver for the Rockchip board)
Connect phone with USB debugging mode
Using ADB push command push the flash_image & recovery.img to /dev/ folder in device
Code:
adb push flash_image /dev/
adb push recovery.img /dev/
Now flash recovery image to recovery partition as follows
Code:
adb shell
chmod 755 /dev/flash_image
/dev/flash_image recovery /dev/recovery.img
chmod 644 /system/etc/install-recovery.sh
to check the recovery use below command
Code:
adb reboot recovery
Source for CWM Image : http://files.androtab.info/rockchip/rk3066/20130203/RK30GENERIC_CWM.zip
Root/Flash AT YOUR OWN RISK. Author is not responsible for what you do on your device. Author is not responsible for liability of any kind.
Rooting Steps for Auxus CoreX2 3g / Rockchip :http://forum.xda-developers.com/showthread.php?t=2126534
Click to expand...
Click to collapse
You rock!! I tried this on my coreX2, however I receive an error at the last command. Can you please confirm the last command, "chmod 644 /system/etc/install-recovery.sh". When I try to execute this command, I receive the below error:
"[email protected]:/ # chmod 644 /system/etc/install-recovery.sh
chmod 644 /system/etc/install-recovery.sh
Unable to chmod /system/etc/install-recovery.sh: No such file or directory"
s.rahus said:
You rock!! I tried this on my coreX2, however I receive an error at the last command. Can you please confirm the last command, "chmod 644 /system/etc/install-recovery.sh". When I try to execute this command, I receive the below error:
"[email protected]:/ # chmod 644 /system/etc/install-recovery.sh
chmod 644 /system/etc/install-recovery.sh
Unable to chmod /system/etc/install-recovery.sh: No such file or directory"
Click to expand...
Click to collapse
I think CWM install the last command is for suppression the restore of the default recovery, so for Core x2 there might not be no default recovery mode.
You can go to recovery mode by pressing the power + home or power + vol dn
skv_vlr_mech said:
I think CWM install the last command is for suppression the restore of the default recovery, so for Core x2 there might not be no default recovery mode.
You can go to recovery mode by pressing the power + home or power + vol dn
Click to expand...
Click to collapse
Yeah power key + home key did the trick!! Everything looks perfect now.
However I've this strange issue- the cmw recovery mode is running upside down (I have to hold the tab with home key on top). I have the same issue while taking screenshots (power key + volume down), the screenshots are upside down. Any idea why is this so?
Now, do we have a cyanogen based ROM that can be flashed on Corex2? I'm planning to try the ROM listed in this thread, will let you know the result- http://forum.xda-developers.com/showthread.php?t=2108704&page=3
skv_vlr_mech said:
ClockworkMod Recovery is alternate recovery mode for the android pre-installed devices. The Auxus CoreX2 is shipped with 4.1.1 and without recovery images.
The following is the steps to flash the CWM Recovery to the Iberry Auxus CoreX2
I tried the RK30 Genric Image as just need to backup and restore options.
Steps
Download the CWM Image
Extract CWN Image to the ADB folder (ADB Driver for the Rockchip board)
Connect phone with USB debugging mode
Using ADB push command push the flash_image & recovery.img to /dev/ folder in device
Code:
adb push flash_image /dev/
adb push recovery.img /dev/
Now flash recovery image to recovery partition as follows
Code:
adb shell
chmod 755 /dev/flash_image
/dev/flash_image recovery /dev/recovery.img
chmod 644 /system/etc/install-recovery.sh
to check the recovery use below command
Code:
adb reboot recovery
Source for CWM Image : http://files.androtab.info/rockchip/rk3066/20130203/RK30GENERIC_CWM.zip
Root/Flash AT YOUR OWN RISK. Author is not responsible for what you do on your device. Author is not responsible for liability of any kind.
Rooting Steps for Auxus CoreX2 3g / Rockchip :http://forum.xda-developers.com/showthread.php?t=2126534
Click to expand...
Click to collapse
In my computer when i type 'adb devices' it does not shows my Auxus x2 adn when i push it to the /dev/ folder it gives me the same error 'error=no device"
iNOXIA2012 said:
In my computer when i type 'adb devices' it does not shows my Auxus x2 adn when i push it to the /dev/ folder it gives me the same error 'error=no device"
Click to expand...
Click to collapse
Do you have the adb drivers installed on your PC? Please try to install/reinstall the drivers.
s.rahus said:
Do you have the adb drivers installed on your PC? Please try to install/reinstall the drivers.
Click to expand...
Click to collapse
Hi! i would be grateful if can u give me the link or upload it
I'm NOOB in ADB
adb cwm recovery screen shot
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
iNOXIA2012 said:
Hi! i would be grateful if can u give me the link or upload it
I'm NOOB in ADB
Click to expand...
Click to collapse
You can download the usb drivers from http://u12455652.letitbit.net/download/45792.49d38524b49df16a0b360c4e0f4b/usb_driver.zip.html.
By the way, you have to be rooted to install cmw recovery. Are you already rooted? The rooting procedure can be found here: http://forum.xda-developers.com/showthread.php?t=2126534 (by skv_vlr_mech). I can confirm that the method works.
---------- Post added at 08:48 PM ---------- Previous post was at 08:45 PM ----------
iNOXIA2012 said:
Hi! i would be grateful if can u give me the link or upload it
I'm NOOB in ADB
Click to expand...
Click to collapse
skv_vlr_mech said:
Click to expand...
Click to collapse
Hi skv_vlr_mech,
Do you know any ROMs based on CM 10.1 (JB 4.2.1) that can be flashed on Corex2?
iNOXIA2012 said:
In my computer when i type 'adb devices' it does not shows my Auxus x2 adn when i push it to the /dev/ folder it gives me the same error 'error=no device"
Click to expand...
Click to collapse
install the correct USB driver refer the http://forum.xda-developers.com/showthread.php?p=37682648#post37682648
Custom ROM for Auxus X2 3g
Hi Friends,
Could you please help me with a custom rom for Auxus core X2 3g anfd the procedure.
I tried with oma's rom but it booting to recovery mode giving error opening e drive.
skv_vlr_mech said:
ClockworkMod Recovery is alternate recovery mode for the android pre-installed devices. The Auxus CoreX2 is shipped with 4.1.1 and without recovery images.
The following is the steps to flash the CWM Recovery to the Iberry Auxus CoreX2
I tried the RK30 Genric Image as just need to backup and restore options.
Steps
Download the CWM Image
Extract CWN Image to the ADB folder (ADB Driver for the Rockchip board)
Connect phone with USB debugging mode
Using ADB push command push the flash_image & recovery.img to /dev/ folder in device
Code:
adb push flash_image /dev/
adb push recovery.img /dev/
Now flash recovery image to recovery partition as follows
Code:
adb shell
chmod 755 /dev/flash_image
/dev/flash_image recovery /dev/recovery.img
chmod 644 /system/etc/install-recovery.sh
to check the recovery use below command
Code:
adb reboot recovery
Source for CWM Image : http://files.androtab.info/rockchip/rk3066/20130203/RK30GENERIC_CWM.zip
Root/Flash AT YOUR OWN RISK. Author is not responsible for what you do on your device. Author is not responsible for liability of any kind.
Rooting Steps for Auxus CoreX2 3g / Rockchip :http://forum.xda-developers.com/showthread.php?t=2126534
Click to expand...
Click to collapse
hi i've uploaded an attachment tell me if the drivers are installed correctly
Is there any point in having CWM recovery when we don't have any custom ROMs?
Nice CWM Recovery
Thanks
The CWM works perfectly on my Auxus Core X2 3G.
A small bug exists that, CWM interface shows Upside down.
Its ok. I am not worrying abt that
Guys you need to try this
Awesome.
can u give
skv_vlr_mech said:
install the correct USB driver refer the http://forum.xda-developers.com/showthread.php?p=37682648#post37682648
Click to expand...
Click to collapse
hi can u download the attachment Plz

[GUIDE] Root for chinafonino I9300DDKL1

I have this phone:
I9300DDKL1
2.6.35.7-I9300XXKL3-CL793489roo[email protected]#2
GINGERBREAD.XXKL3
android: 4.1.9
this is a very cheap phone... it have a spreadtrum cpu 1ghz, 512mb di ram, 180mb for apps, no internal memory, android 2.3.7
many many chinese app and it don't have a international play store and google account... only chinese store,
but it is fast and have a good display,
i want root... i have tried many famous exploit and programs, but nothing...I have tried all the known ways, but nothing worked.
I flashed a cwm recovery to a similar phone (i9270) but when you get into recovery the screen is illuminated, making it unusable.
But the phone has no problems once powered on.
but i'm be very lucky and now i have root:
Here the luck:
I go into recovery, I connect it to the USB port ... I realize that the computer recognizes it!
I start randomly MTKdroids .... and I realize with amazement that recognizes it and tells me that the "root shell"!!
practically even if the recovery is not usable ... (Matter of display driver I think) this works!! I open directly from mtkdroid prompt for adb and can install the root manually with ADB commands!!
preparation:
A) install the drivers (ok for win8 64bit)
SCI-android-new i9300ddkl1.rar (12.7 MB)
https://mega.co.nz/#!00NUkARJ!EGBrqAcjV3_MHiFhmBzifW3u2yQc7rsbyirbS_LCvNU
B) flash the recovery
1) download this
recovery.img (10.0 MB)
https://mega.co.nz/#!x4sEmSoa!JC1YkjyJ6b2-TC5o1JaXHCws22UqIjWkuF8n5LwnXxA
2) Download fastboot
adb_fastboot_and_other_tools.zip (11.1 MB)
https://mega.co.nz/#!YhsgmBjR!O3_dXhqPVVXR7FPlv_4EARFoDEUnKbTj9ocNXIuicuc
3) You must log in fastboot mode. you must try all combinations of buttons, I worked by holding power, then volume more then home in fast time.
4)copy recovery.img inside directory with fastboot
4) from the cmd prompt, type:
fastboot flash recovery recovery.img
Mtk Dorids:
MTKdroidTools_v230.exe (4.3 MB)
https://mega.co.nz/#!lgFyQQbY!DNNtAwVP24u2RPpl7M_CFjAW_m98PEdwraLiPIWtcWA
install mtkdroids
copy files SU, superuser.apk and busybox in the directory adb in directory of mtkdroids
pull them by this file:
https://mega.co.nz/#!511zRR6J!B9vcRCGuBsQ6iqvrK3piwUxbu75p-kyof3cJsgcr2G0
connect your phone switched on
open mtkdroids
reboot into recovery with "reboot" button
when the phone will reboot into recovery
you will see a green square and the "root shell" in the lower left
open "adb terminal"
then:
1) mount the file system:
adb shell
# mount -o rw -t /dev/block/mtdbblock11 /system
# exit
2) copy the file root:
adb push to / system / xbin / su
adb push Superuser.apk / system / app / Superuser.apk
adb push busybox / system / xbin / busybox
3) set the permission
adb shell
# Chmod 06755 / system / xbin / su
# Chmod 0644 / system / app / Superuser.apk
# Chmod 0755 / system / xbin / busybox
exit
4) Restart
Hi Angelo,
link A and B dont work...mega ask me for encryption key!
could you check it please?
thanks
ok..
i have fixed links... (new driver for fastboot mode) and make some adjustment.
Angelo
hi
i need this driver...
plz help me
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
plz help me
angelobiz said:
I have this phone:
I9300DDKL1
[email protected]#2
GINGERBREAD.XXKL3
android: 4.1.9
this is a very cheap phone... it have a spreadtrum cpu 1ghz, 512mb di ram, 180mb for apps, no internal memory, android 2.3.7
many many chinese app and it don't have a international play store and google account... only chinese store,
but it is fast and have a good display,
i want root... i have tried many famous exploit and programs, but nothing...I have tried all the known ways, but nothing worked.
I flashed a cwm recovery to a similar phone (i9270) but when you get into recovery the screen is illuminated, making it unusable.
But the phone has no problems once powered on.
but i'm be very lucky and now i have root:
Here the luck:
I go into recovery, I connect it to the USB port ... I realize that the computer recognizes it!
I start randomly MTKdroids .... and I realize with amazement that recognizes it and tells me that the "root shell"!!
practically even if the recovery is not usable ... (Matter of display driver I think) this works!! I open directly from mtkdroid prompt for adb and can install the root manually with ADB commands!!
preparation:
A) install the drivers (ok for win8 64bit)
SCI-android-new i9300ddkl1.rar (12.7 MB)
https://mega.co.nz/#!00NUkARJ!EGBrqAcjV3_MHiFhmBzifW3u2yQc7rsbyirbS_LCvNU
B) flash the recovery
1) download this
recovery.img (10.0 MB)
https://mega.co.nz/#!x4sEmSoa!JC1YkjyJ6b2-TC5o1JaXHCws22UqIjWkuF8n5LwnXxA
2) Download fastboot
adb_fastboot_and_other_tools.zip (11.1 MB)
https://mega.co.nz/#!YhsgmBjR!O3_dXhqPVVXR7FPlv_4EARFoDEUnKbTj9ocNXIuicuc
3) You must log in fastboot mode. you must try all combinations of buttons, I worked by holding power, then volume more then home in fast time.
4)copy recovery.img inside directory with fastboot
4) from the cmd prompt, type:
fastboot flash recovery recovery.img
Mtk Dorids:
MTKdroidTools_v230.exe (4.3 MB)
https://mega.co.nz/#!lgFyQQbY!DNNtAwVP24u2RPpl7M_CFjAW_m98PEdwraLiPIWtcWA
install mtkdroids
copy files SU, superuser.apk and busybox in the directory adb in directory of mtkdroids
pull them by this file:
https://mega.co.nz/#!511zRR6J!B9vcRCGuBsQ6iqvrK3piwUxbu75p-kyof3cJsgcr2G0
connect your phone switched on
open mtkdroids
reboot into recovery with "reboot" button
when the phone will reboot into recovery
you will see a green square and the "root shell" in the lower left
open "adb terminal"
then:
1) mount the file system:
adb shell
# mount -o rw -t /dev/block/mtdbblock11 /system
# exit
2) copy the file root:
adb push to / system / xbin / su
adb push Superuser.apk / system / app / Superuser.apk
adb push busybox / system / xbin / busybox
3) set the permission
adb shell
# Chmod 06755 / system / xbin / su
# Chmod 0644 / system / app / Superuser.apk
# Chmod 0755 / system / xbin / busybox
exit
4) Restart
Click to expand...
Click to collapse
Bro is possible you make a full backup from this phone i need too i have one need full rom..thx

Categories

Resources