maverickwolf
Lurker
I was curious as to what was going on behind the scenes when my phone was being rooted, so after some research and playing around I came up with my own method of Rooting the Shine Plus.
I made a batch file that you just have to run that achieves root. Instructions are as follows:
1. Download LGShinePlusC710hRoot.rar
2. Extract the Folder to your desktop or other convenient location
3. Set Your phone to Debugging mode and connect it to your PC via USB
4. Open the run.bat file and follow the prompts
This should get your phone rooted from a stock 2.3.3
For those who are curious as to what is going on when the batch file is running or wish to do it manually, I used the following commands:
If you go the manual route, be sure to copy Superuser.apk, busybox, and su into the directory you are running adb from!
Not sure how useful this will be to anyone since we already have the method that Karendar posted for us, but you never know! Hope someone finds this handy.
Also feel free to post any questions you have about this and I will try to answer them. This is my first time creating something like this and sharing it, so there is bound to be something that goes wrong! But I'll be glad to try and help if I can!
I made a batch file that you just have to run that achieves root. Instructions are as follows:
1. Download LGShinePlusC710hRoot.rar
2. Extract the Folder to your desktop or other convenient location
3. Set Your phone to Debugging mode and connect it to your PC via USB
4. Open the run.bat file and follow the prompts
This should get your phone rooted from a stock 2.3.3
For those who are curious as to what is going on when the batch file is running or wish to do it manually, I used the following commands:
adb kill-server
adb devices
adb shell
echo 1 > /data/local/lge_adb.conf
exit
adb reboot
adb push busybox /data/local/
adb push su /data/local/
adb shell chmod 777 /data/local/busybox
adb shell chmod 777 /data/local/su
adb shell
/data/local/busybox cp /data/local/su /system/xbin/su
chown 0:0 /system/xbin/su
chmod 6755 /system/xbin/su
ln -s /system/xbin/su /system/bin/su
rm /data/local/busybox
rm /data/local/su
exit
adb push Superuser.apk /system/app/Superuser.apk
adb reboot
adb devices
adb shell
echo 1 > /data/local/lge_adb.conf
exit
adb reboot
adb push busybox /data/local/
adb push su /data/local/
adb shell chmod 777 /data/local/busybox
adb shell chmod 777 /data/local/su
adb shell
/data/local/busybox cp /data/local/su /system/xbin/su
chown 0:0 /system/xbin/su
chmod 6755 /system/xbin/su
ln -s /system/xbin/su /system/bin/su
rm /data/local/busybox
rm /data/local/su
exit
adb push Superuser.apk /system/app/Superuser.apk
adb reboot
If you go the manual route, be sure to copy Superuser.apk, busybox, and su into the directory you are running adb from!
Not sure how useful this will be to anyone since we already have the method that Karendar posted for us, but you never know! Hope someone finds this handy.
Also feel free to post any questions you have about this and I will try to answer them. This is my first time creating something like this and sharing it, so there is bound to be something that goes wrong! But I'll be glad to try and help if I can!
Question for you, in your rar file, did you update to the latest su binary and Superuser.apk? And which version of busybox are you using?