[Q] Help!!! How to root Zte Kis Lite. - Android Q&A, Help & Troubleshooting

Hardware: roamer2
Model: ZTE Kis Lite
Build number: P752D01_EUROPEV1.0.0B05
Build date UTC: 20121219-163244
Android v: 2.3.6
Kernel v: 2.6.38.6-perf + [email protected]
Baseband v: P752D01_EUROPEB01
I've tried almost all of the rooting methods, including Superoneclick, MTK droid root & tools, ZhuoDaShi, Unlockroot, and many more but nothing. Can anyone please tell me how can i root this chinese crap?
Tnx

Anyone has any solution, impossible to put up root and recovery?

My need same help.
Сент фром му ЗТЕ усинг Тапаталк 2

Brna1 said:
My need same help.
Сент фром му ЗТЕ усинг Тапаталк 2
Click to expand...
Click to collapse
seems like everything i try doesn't work including
http://forum.xda-developers.com/showthread.php?t=2138234
^ which doesn't mention KIS I/II/III/LITE/PLUS so.....

knifey_au said:
seems like everything i try doesn't work including
http://forum.xda-developers.com/showthread.php?t=2138234
^ which doesn't mention KIS I/II/III/LITE/PLUS so.....
Click to expand...
Click to collapse
if you download that rooting app i mentioned, extract it to every directory of superoneclick, run superoneclick it will install a driver. then run the rooting package. i did a million things but i think that was it.

my solution on root for ZTE Kiss Lite V790 is here www . filedropper.com / d_4
I have a mobile ZTE Kiss Lite V790 and i managed to make it root.
follow thw instractions here.
www . filedropper.com / d_4
I have a mobile ZTE Kiss Lite V790 and i managed to make it root.
The procedure i followed is:
I download the file www . filedropper . com / rootv790 rootv790.zip
and unziped its files on my c:\temp
I also downloaded and install the www . filedropper . com / ztedriver driver file.
then i should manage to run one 中兴V788D一键ROOT .BAT executable file but i could not.
so ,i instead of running it, I edit copy the 中兴V788D一键ROOT .BAT text in the Microsoft Word and
change the language so that i could read the code. and i understand some of the commands inside the
中兴V788D一键ROOT .BAT file which i run on CMD (DOS) :
these commands was:
adb kill-server >NUL 2>NUL
adb wait-for-device >NUL 2>NUL
adb reboot bootloader ------->Here the phone stopsand goes waiting. So i installed again the device "android" driver.
fastboot boot Superboot.img
ping 127.0.0.1 -n 15 >NUL
adb wait-for-device >NUL 2>NUL
ping 127.0.0.1 -n 5 >NUL
adb remount
adb shell rm /system/bin/su >NUL 2>NUL
adb shell rm /system/xbin/su >NUL 2>NUL
adb shell rm /system/app/Superuser.apk >NUL 2>NUL
adb shell rm /system/app/superuser.apk >NUL 2>NUL
adb push su /system/bin/su
adb shell chown 0.0 /system/bin/su
adb shell chmod 06755 /system/bin/su
adb shell ln -s /system/bin/su /system/xbin/su
adb push Superuser.apk /system/app/Superuser.apk
adb shell chown 0.0 /system/app/Superuser.apk
adb shell chmod 0644 /system/app/Superuser.apk
adb push RootExplorer.apk /system/app/RootExplorer.apk
adb shell chown 0.0 /system/app/RootExplorer.apk
adb shell chmod 0644 /system/app/RootExplorer.apk
adb reboot
adb kill-server >NUL 2>NUL
------------------------------------------------
* A trick that i need to do is after the phone restarts, the phone,stayed and waiting me (with the green figure)
until i sow that another device "android" was not recognized at the devices place, so i again manualy installed it.
as google.inc , ZTE kernel debug interface.
look the photos if they help you..
sorry for my bad english writing.
image 1 www . filedropper . com / 1_5
image 2 www . filedropper . com /2_2
I Hope i helped you.

Related

[Q] ADB shell commands in .bat

I am on aospCM's rom for my Hero and as such the market has some problems. To fix it, s0be found a way to do it. The commands are such:
1. adb shell
2. su
3. mkdir /cache/download
4. chown system:cache /cache/download
5. chmod ug+rwx /cache/download
6. chmod a+x /cache/download
Click to expand...
Click to collapse
I don't need step 3 since the directory exists.
Since I am flashing nightlies (or near nightlies as the case may be) typing all of these commands gets super tedious. I figured there has to be a way to do this in a .bat from Windows.
I have adb worked into my system shell (did this so I could use the SendTo menu to push to my phone) and I came up with this:
Code:
@echo off
adb connect 192.168.1.66
echo Time to fix the market
pause
adb shell su
adb shell chown system:cache /cache/download
adb shell chmod ug+rwx /cache/download
adb shell chmod a+x /cache/download
echo Done
pause
This didn't work, nor did a few iterations previous to it where I was taking out the repetitive 'adb shell' commands. I don't know enough about batch/dos programming to get this to work, so I am turning to the community. Help please?
i think you must need superuser permision
not "adb shell" try "adb shell -c"
dateno1 said:
i think you must need superuser permision
not "adb shell" try "adb shell -c"
Click to expand...
Click to collapse
Does that mean I need to put "adb shell -c" on each line? Just once?
just replace 'adb shell' to 'adb shell su -c' and retry
dateno1 said:
just replace 'adb shell' to 'adb shell su -c' and retry
Click to expand...
Click to collapse
Got it! Thanks!
I got it to work too (well, I think anyway). If anyone's interested, here's my code (and if anyone sees any problems, let me know!):
Code:
@echo Begin s0be's market fix
@echo off
PAUSE
adb connect 192.168.1.66
adb shell "su -c 'sleep 1'"
adb start-server
@echo on
@echo Working...
@echo off
SET /P ANSWER=Create /cache/download?
echo (y/y): %ANSWER%
if /i {%ANSWER%}=={y} (goto :yes)
goto :no
:yes
adb shell "su -c 'sleep 2'"
@echo Creating Market Directory in Cache
@echo off
adb shell "su -c 'mkdir /cache/download'"
goto :no
:no
adb shell "su -c 'sleep 2'"
@echo Assigning Logical Link
@echo off
adb shell "su -c 'chown system:cache /cache/download'"
adb shell "su -c 'sleep 2'"
@echo Setting Permissions for Logical Link
@echo off
adb shell "su -c 'chmod ug+rwx /cache/download'"
adb shell "su -c 'chmod a+x /cache/download'"
adb shell "su -c 'sleep 2'"
@echo asop Market Fix complete!
PAUSE
RVDigital gave me some help as well
nathanielray said:
Does that mean I need to put "adb shell -c" on each line? Just once?
Click to expand...
Click to collapse
thank you very much, after so many years after your publication, I am now in 2020 also helped a lot)))) Hello from Russia with love )))
Excellent! It also came in handy for me. Thank you!

[UnROOT][ICS] UnRoot Razr ICS 4.0.3 and 4.0.4 [NEW]

[UnROOT][ICS] UnRoot Razr ICS 4.0.3 and 4.0.4 [NEW]
[UPDATED] Jun 16 2012
[REQUIREMENTS]
Check if your USB computer connection is "Mass Storage".
It shouldn't be. Change it to "media device".
Check if your configuration of android is set to "debug mode".
[COMMANDS]
1. Enter in command line Prompt DOS Mode
2. Remember connect your razr in USB port on computer or notebook
3. Activate "debug mode" and "media device"
4. Enter this commands with prompt
5. After commands reboot your device
@UnRoot For Droid Razr ICS
@echo off
adb start-server
adb remount
adb shell chmod 0777 /system/xbin/su
adb shell chmod 0777 /system/bin/su
adb shell chmod 0777 /system/app/Superuser.apk
adb shell chmod 0777 /system/xbin/busybox
adb shell rm -r /system/app/Superuser.apk
adb shell rm -r /system/xbin/su
adb shell rm -r /system/bin/su
adb shell rm -r /system/xbin/busybox
adb reboot
exit
[ROOT] If you need Root again
[SCRIPT] Fully tested and only run in prompt and wait process
http://www.mediafire.com/download.php?p1dks81hu3dtiw7
http://www.4shared.com/rar/iqgref86/ROOT.html
[POST ORIGINAL]
http://forum.xda-developers.com/show....php?t=1707431
I'm here to help people around the world
is not what you do that makes you extraordinary
but it is the way that we give that says who we are
it can not be measured with thanks or views
Jesus is the Lord
About this Root method - Thank You XDA for this page
http://www.xda-developers.com/androi...razr/#comments
About this Root method - Thank You Droid Life for this page
http://www.droid-life.com/2012/06/14...icial-release/
I'm here to help people around the world
is not what you do that makes you extraordinary
but it is the way that we give that says who we are
it can not be measured with thanks or views
Jesus is the Lord
About this Root method - Thank You XDA for this page
http://www.xda-developers.com/android/root-achieved-for-ics-on-gsm-and-cdma-moto-razr/#comments
About this Root method - Thank You Droid Life for this page
http://www.droid-life.com/2012/06/14/razr-ice-cream-sandwich-builds-rooted-before-official-release/
Im Lost
Hey i need help in the beginning were you do the commands prompt and so on. Pleace help thanks.
Thanks hacker812c! To confirm...this root and unroot works with the 4.0.4 OTA just released by VZW right?
This root method worked just fine with 4.0.4. I do have one problem with Safestrap... when I reboot, I don't see the safesystem menu pop up just before the boot animation begins. Why is this? How can I get this fixed. I used to do a manual backup of the entire system. Help!!!
Sent from my DROID RAZR using xda app-developers app
Need help
The instructions are not very clear, i have followed every step but i dont see the prompts that i am suppose to use can you please clearify
hacker812c said:
[UnROOT][ICS] UnRoot Razr ICS 4.0.3 and 4.0.4 [NEW]
[UPDATED] Jun 16 2012
[REQUIREMENTS]
Check if your USB computer connection is "Mass Storage".
It shouldn't be. Change it to "media device".
Check if your configuration of android is set to "debug mode".
[COMMANDS]
1. Enter in command line Prompt DOS Mode
2. Remember connect your razr in USB port on computer or notebook
3. Activate "debug mode" and "media device"
4. Enter this commands with prompt
5. After commands reboot your device
@UnRoot For Droid Razr ICS
@echo off
adb start-server
adb remount
adb shell chmod 0777 /system/xbin/su
adb shell chmod 0777 /system/bin/su
adb shell chmod 0777 /system/app/Superuser.apk
adb shell chmod 0777 /system/xbin/busybox
adb shell rm -r /system/app/Superuser.apk
adb shell rm -r /system/xbin/su
adb shell rm -r /system/bin/su
adb shell rm -r /system/xbin/busybox
adb reboot
exit
[ROOT] If you need Root again
[SCRIPT] Fully tested and only run in prompt and wait process
http://www.mediafire.com/download.php?p1dks81hu3dtiw7
http://www.4shared.com/rar/iqgref86/ROOT.html
[POST ORIGINAL]
http://forum.xda-developers.com/show....php?t=1707431
I'm here to help people around the world
is not what you do that makes you extraordinary
but it is the way that we give that says who we are
it can not be measured with thanks or views
Jesus is the Lord
About this Root method - Thank You XDA for this page
http://www.xda-developers.com/androi...razr/#comments
About this Root method - Thank You Droid Life for this page
http://www.droid-life.com/2012/06/14...icial-release/
Click to expand...
Click to collapse
This thread is a non sense. Ive no idea why this is still alive.
Follow this if you wanna get unrooted.
http://forum.xda-developers.com/showthread.php?t=1710871
Sent from my XT910 using xda premium

[Q] Rooting china android phone

I Request senior members to help me on this topic coz m a begainer to android m trying to root my cell since last 1 month but always i get an disappointment with 0 result so i request mods and senior members to help me in rooting my phone..
my cell is a made in china cell so i dont have the drivers
here are some more details for ur refference
campany name Aimax
model: R5830i
ANDROID VERSION: 2.3.5
BASEBAND VERSION: BASE_W12.17/sc6820_sp6820/04-20-2012/16:03:42
kernel version:2.6.35.7 [email protected]#9
software version:mocorDroid2.3.5.w12.09.10
hardware version:1.1.0
and one more thing when i connection to pc it shows found new hardware "spreadtrum phone" but it is unable to update the drivers...
Positive replies are always appreciated thanx in advance
Plez help
plez help waiting for your reply...
Rooting China phones in windows and linux
Try one of these:
1. Using linux {Recommended}Install Ubuntu or DebianEither
Install the android-sdk.
dl.google●com/android/adt/adt-bundle-linux-x86-20130717.zip <==x86
dl.google●com/android/adt/adt-bundle-linux-x86_64-20130717.zip <==x86_64
or
Just get the standalone adb and fastboot executables
texasice-cream-sandwich-mirror.googlecode●com/files/adb_fastboot.zip​Install ia32-libsRun this in a terminal
Code:
sudo apt-get install libc6-i386 lib32stdc++6 lib32gcc1 lib32ncurses5
Now download the files required for root and put it in the same folder as adbmir●cr/GDEPZT4V​After you finish installing the files,
Connect your device with debugging mode enabled
Run
Code:
cd path/to/adb
where "path/to/adb" is the directory of your adb file
Now run
Code:
sudo chmod a+x adb
sudo chmod a+x fastboot
>>Root
Code:
./adb devices
./adb push busybox /data/local/tmp/
./adb push su /data/local/tmp
./adb push Superuser.apk /data/local/tmp
./adb shell
Chmod and run the exploit under adb shell
Code:
cd /data/local/tmp
chmod 755 psneuter
./psneuter
Now re-engage an adb shell to check if the exploit worked.
Code:
./adb kill-server
./adb devices
./adb shell
If you see a # sign, the exploit was was successful. Otherwise repeat from >>Root
Now run these on the same adb shell
Code:
cd /data/local/tmp
./busybox ash
mount -o remount,rw /system
mv /data/local/tmp/su /system/xbin/su
chmod 6755 /system/xbin/su
chown 0.0 /system/xbin/su
mv /data/local/tmp/Superuser.apk /system/app/Superuser.apk
chmod 777 /system/app/Superuser.apk
cp /data/local/tmp/busybox /system/xbin/busybox
chmod 6755 /system/xbin/busybox
Now reboot your device and open up SuperSU. Let it update the binary.
Your device should be rooted. ​2. Use Windows + MoboroboMethod 1 {Recommended but hard}
Download Moborobo from
Code:
moborobo●com
This software can Install drivers for many china phones and other branded phones.
After installing Moborobo download the files required for root
Code:
mir●cr/GDEPZT4V
Extract the files to the installation directory of Moborobo.
Code:
C:\Program Files (x86)\Moborobo
Run a CMD window under that directory and type
Code:
xcopy AndroidInterface.exe abd.exe
Connect your device in debugging mode & Open up Moborobo, It will install the drivers.
Keep Moborobo open & Follow the instructions mentioned in >>Root
P.S- the linux commands begin with a "./" remove this in windows or else it won't work. Note: Wherever I mentioned a terminal, the windows equivalent to this would be cmd​Method 2 {Easier}
Download and Install Moborobo just like above and run this under a cmd on that folder
Code:
xcopy AndroidInterface.exe
Also download UnlockRoot or SuperOneClick
To make sure the adb files are same, Copy over
Code:
adb.exe
AdbWinApi.dll
AdbWinUsbApi.dll
to UnlockRoot's tools directory or SOC's ADB directory
Connect your device in debugging mode and open up moborobo.
Now keep Moborobo open and Run UnlockRoot or SOC. ​Good Luck :good:
(c) Smo0thK, team BL4CKF1R3
Press thanks if I helped you.
Nice tutorial you have posted Smo0thK. Please also comment on the following points.
1) Which tablets have you tried the above methods to get root access. Since most of the tablets in Indian market are from China, same would be the situation in Bangladesh and similar techniques can be used. Please list their Brand and model numbers.
2) I personally use a Penta IS701c which actually is pre-rooted from factory but the su command does not work because configuration is messed up. (# prompt in ADB shell indicates root access) Many of these Chinese tablets come pre-rooted from factory but to get su command working things have to be cleaned up. What is your experience about this.
3) Android 3.1+ devices must support USB Host mode but most of the tablets are lacking support. (Use USB Host Diagnostics app to find out).
Have you found any tablet that supports USB Host mode without a custom kernel.
Best Regards,
Vineet Kumar

How to root MediaPad T1 8.0 Pro, T1-921LV Android 4.4.4

I've tried KingRoot but it tells me the device isn't supported. Are there any ways to install a custom recovery like TWRP or CWM?
Extract the boot.img file from "UPDATE.APP", upload it here, and I'll root it manually for you.
mann1 said:
Extract the boot.img file from "UPDATE.APP", upload it here, and I'll root it manually for you.
Click to expand...
Click to collapse
I saw your post on another thread here so I got the tools to extract it, but my knowledge is limited at ro.secure=0 and bash. If you wouldn't mind sharing I'd love to know how it's done.
I've attached the file.
Well, first you need to download the following files:
1-Your rooted_boot img from here
2-Compressed folder mann1.zip from here
===
Now lets start,
1- Unzip the rooted img then flash it, (be careful it's not tested)
2- 2- Unzip the file "mann1.zip" to get folder "mann1" then copy it directly into your device internal storage NOT the SD card. Put the the whole folder not the files inside
3-If the rooted boot worked fine, restart your device in the normal mode (NOT the recovery nor bootloader), and type the following commands one by one:
Code:
adb devices
adb root
adb shell
Now you supposed to see your root like that
[email protected]:/ #
complete the commands in the adb shell:
mount -o remount,rw /system
mount -o remount,rw /etc
mkdir /system/bin/.ext
mkdir /etc/init.d
cat /sdcard/mann1/busybox > /system/bin/busybox
cat /sdcard/mann1/su > /system/xbin/su
cat /sdcard/mann1/Superuser.apk > /system/app/Superuser.apk
cat /sdcard/mann1/su > /system/xbin/daemonsu
cat /sdcard/mann1/su > /system/xbin/sugote
cat /system/bin/sh > /system/xbin/sugote-mksh
cat /sdcard/mann1/supolicy > /system/xbin/supolicy
cat /sdcard/mann1/otasurvival.sh > /system/xbin/otasurvival.sh
cat /sdcard/mann1/libsupol.so > /system/lib/libsupol.so
cat /sdcard/mann1/su > /system/bin/.ext/.su
cat /sdcard/mann1/su > /etc/.installed_su_daemon
cat /sdcard/mann1/install-recovery.sh > /etc/install-recovery.sh
cat /sdcard/mann1/99SuperSUDaemon > /etc/init.d/99SuperSUDaemon
chown 0.0 /system/bin/busybox
chmod 0755 /system/bin/busybox
chown 0.0 /system/app/Superuser.apk
chmod 0755 /system/app/Superuser.apk
chown 0.0 /system/xbin/su
chmod 0755 /system/xbin/su
chown 0.0 /system/xbin/sugote
chmod 0755 /system/xbin/sugote
chown 0.0 /system/xbin/sugote-mksh
chmod 0755 /system/xbin/sugote-mksh
chown 0.0 /system/xbin/daemonsu
chmod 0755 /system/xbin/daemonsu
chown 0.0 /system/xbin/supolicy
chmod 0755 /system/xbin/supolicy
chown 0.0 /system/xbin/otasurvival.sh
chmod 0755 /system/xbin/otasurvival.sh
chown 0.0 /system/lib/libsupol.so
chmod 0755 /system/lib/libsupol.so
chown 0.0 /system/bin/.ext/.su
chmod 0755 /system/bin/.ext/.su
chown 0.0 /etc/.installed_su_daemon
chmod 0755 /etc/.installed_su_daemon
chown 0.0 /etc/install-recovery.sh
chmod 0755 /etc/install-recovery.sh
chown 0.0 /etc/init.d/99SuperSUDaemon
chmod 0755 /etc/init.d/99SuperSUDaemon
daemonsu -d
reboot
I assumed you already know the adb and fastboot commands to flash the boot
If everything run smoothly,after restarting your device you will find SuperSU installed, and the device is rooted w/o custom recovery.
mann1 said:
Code:
adb devices
adb root
adb shell
Now you supposed to see your root like that
[email protected]:/ #
Click to expand...
Click to collapse
I just booted the image and tried to start adb as root which it does however adb shell drops me into a regular shell, I also tried to flash it but still, no dice.
Code:
[email protected]:~/Music/root$ adb root
restarting adbd as root
[email protected]:~/Music/root$ adb shell
[email protected]:/ $ exit
I have a feeling there may be a software block inside system.img to prevent adb starting a shell as root, any idea?
adamhighdefinition said:
I just booted the image and tried to start adb as root which it does however adb shell drops me into a regular shell, I also tried to flash it but still, no dice.
I have a feeling there may be a software block inside system.img to prevent adb starting a shell as root, any idea?
Click to expand...
Click to collapse
The method works fine under Windows, but I've never tried it out under Linux.
Try this new root_boot2.img HERE (be careful it's not tested)
Pls flash it, don't just boot it:
fastboot flash boot root_boot2.img
If you get error with "adb root", skip it and keep going till the "reboot"
Good luck
mann1 said:
The method works fine under Windows, but I've never tried it out under Linux.
Try this new root_boot2.img HERE (be careful it's not tested)
Pls flash it, don't just boot it:
fastboot flash boot root_boot2.img
If you get error with "adb root", skip it and keep going till the "reboot"
Good luck
Click to expand...
Click to collapse
Just tested it, it caused a bootloop though, I cleared the cache and it still looped. I'll flash the first one and test it on windows then I'll report back.
The first one does allow me to see the Logcat output for all of the system services in Android Studio though, so it is giving elevated permissions.
Yeah, same on windows. Drops me into a normal shell.
Well, try this one
mann1 said:
Well, try this one
Click to expand...
Click to collapse
Dude thank you! I was repacking custom systems all night last night trying to install it directly into the rom.
In your mann1 folder the su binary is out of date btw
adamhighdefinition said:
Dude thank you! I was repacking custom systems all night last night trying to install it directly into the rom.
In your mann1 folder the su binary is out of date btw
Click to expand...
Click to collapse
Yvw, then this last one worked fine with you.
Su binary is extracted from the most recent version of SuperSu.apk, but in all cases we just use it to get rooted then you can update the whole package via Google play.
mann1 said:
Yvw, then this last one worked fine with you.
Click to expand...
Click to collapse
Yeah, last one worked for the Mediapad T1 8.0 Pro T1-921L.
mann1 said:
Su binary is extracted from the most recent version of SuperSu.apk, but in all cases we just use it to get rooted then you can update the whole package via Google play..
Click to expand...
Click to collapse
Must just be supersu being weird then, thanks again.
This tutorial explains how to root the kernel of any device under Linux. Here
Good luck

Bypass prenormal state method and TWRP

Hi. First sorry for my English.
I can erase they prenormal state without wait the 7 days I a A+2019 (A605GN) with binary 3 in Oreo
Need tools: ADB driver's, combination fw for ur model, stock fw, Mixplorer (or an other root file explorer), SuperSu zip, RMM bypass zip, forced encryption disabled zip and Odin 3.13.
Optional TWRP image zip, magisk zip.
First go to download mode and flash the combination fw.
Reboot ur phone when startup go to settings, enable usb debugging.
Unzip the SuperSu zip and make a bat (in Windows) or sh (in Linux) with the following code in the root of SuperSu folder

Code:
adb root
adb remount
adb push common/Superuser.apk /system/app/SuperSU/SuperSU.apk
adb shell chmod 0644 /system/app/SuperSU/SuperSU.apk
adb shell chcon u:object_r:system_file:s0 /system/app/SuperSU/SuperSU.apk
adb push common/install-recovery.sh /system/etc/install-recovery.sh
adb shell chmod 0755 /system/etc/install-recovery.sh
adb shell chcon u:object_r:toolbox_exec:s0 /system/etc/install-recovery.sh
adb shell ln -s /system/etc/install-recovery.sh /system/bin/install-recovery.sh
adb push armv7/su /system/xbin/su
adb shell chmod 0755 /system/xbin/su
adb shell chcon u:object_r:system_file:s0 /system/xbin/su
adb push armv7/su /system/bin/.ext/.su
adb shell chmod 0755 /system/bin/.ext/.su
adb shell chcon u:object_r:system_file:s0 /system/bin/.ext/.su
adb push armv7/su /system/xbin/daemonsu
adb shell chmod 0755 /system/xbin/daemonsu
adb shell chcon u:object_r:system_file:s0 /system/xbin/daemonsu
adb push armv7/supolicy /system/xbin/supolicy
adb shell chmod 0755 /system/xbin/supolicy
adb shell chcon u:object_r:system_file:s0 /system/xbin/supolicy
adb push armv7/libsupol.so /system/lib/libsupol.so
adb shell chmod 0644 /system/lib/libsupol.so
adb shell chcon u:object_r:system_file:s0 /system/lib/libsupol.so
adb shell cp /system/bin/app_process /system/bin/app_process_original
adb shell chmod 0755 /system/bin/app_process_original
adb shell chcon u:object_r:zygote_exec:s0 /system/bin/app_process_original
adb shell cp /system/bin/app_process32 /system/bin/app_process32_original
adb shell chmod 0755 /system/bin/app_process32
adb shell chcon u:object_r:zygote_exec:s0 /system/bin/app_process32_original
adb shell rm -rf /system/bin/app_process32
adb shell rm -rf /system/bin/app_process
adb shell ln -s /system/xbin/daemonsu /system/bin/app_process32
adb shell ln -s /system/xbin/daemonsu /system/bin/app_process
adb shell "echo 1 > /system/etc/.installed_su_daemon"
adb shell /system/xbin/su --install
Open a terminal with ur phone connected and run
Adb root
Adb remount
Then run ur bat or sh file in the terminal if u don't underestandme search how to install SuperSu with ADB.
Reboot the phone.
Open SuperSu and install the binaries normally.
Open Mixplorer and go to root.
Then go to dev\block and open steady with de code Editor of Mixplorer.
The file only show symbols. In the star search prenormal and change to Normal. Search an other prenormal word and change to Normal. Save the file.
Reboot ur phone in recovery mode and then to bootloader.
And the prenormal state are gonne.
Open Odin and DISABLE AUTOREBOOT AND F. LOCK.
Flash the stock FW (all AP BL CSC CL)
When finish no reboot yet. In plug and plug the phone.
Flash TWRP.
Reboot ur phone in recovery mode and TWRP should open. ???
Then flash the encryption forced disabled. And Format data. (DONT WIPE, USE FORMAT DATA).
Reboot again in recovery mode.
Flash de rmm bypass zip.
Install magisk zip.
Reboot in system.
READY!!!!
U have a Normal State. TWRP and rooted phone. Enjoy.

Categories

Resources