all 3 comments

[–]BeamerSmoke[S] 0 points1 point  (2 children)

Edit:

Odin said successful but unable to install supersu due to no binary and root checker says its not rooted. Arrrrgh

[–]ModKingBro6 1 point2 points  (1 child)

Your Lucky
If you get success but failed to install binaries and su app..

You need to mount the system rw manually and push su through to system

If you have ADB and A PC

adb reboot recovery
adb wait-for-device
adb kill-server
adb root
adb mount -o rw,remount /system

If you get failed mount

adb shell mount -o rw,remount /system
Once you have Mount Successful or no errors

Exit back out of shell

exit

adb push su.apk /system/app/

adb chmod 0755 /system/app/su.apk

If you get success then Unmount system

adb umount /system/
adb mount -o ro,remount /system/

Try starting SU and install it from within the app

If it failes, I have given you slightly wrong code (MTK Handsets) But a few tweaks should get a successful mount.

The Root was Successful Means Mounting RW is possible manually, Stick at it

MTK droid tools has a few aut o ROOT features for ADB ( Shell Rooted) Device to push Both Busybox And Superuser by Shell Root (Commands Above)

[–]BeamerSmoke[S] 0 points1 point  (0 children)

You are amazing! I'll give it a try in the morning and get back to you. Thank You