I'm not sure where my questions were going in circles. I thought I was looking for clarification but ok, thanks anyway. I appreciate the input throughout this thread.
And also thanks to you, trigger.
Once I feel comfortable enough going ahead with rooting, I'll update this thread, for those interested of course.
Yeah sorry. I was reading back through replies with tapatalk. Looked like a lot of the same thing over and over again. Didn't notice the names were all different.
That's my fault.
Sent from my VS920 4G using Tapatalk 2
*edit*
So, here's a step by step for what you should do (imo). Root the phone. Rooting just changes the file permissions and adds the SU binary to system. You can unroot easily enough using the unroot tool instead of the pwnage tool
http://androidforums.com/spectrum-all-things-root/525057-simplest-way-root-unroot-lgs.html so there's not much reason to not just go ahead and root the phone, really.
In fact, here's the applicable portion from the root tools for what it's doing to root the phone. (don't copy/paste this.... it's in the batch files when you run the tools). Before you could do this, you need to exploit a delay in the phone's adb functions anyway... which the scripts do before this.
[HIGH]adb remount
adb push su /system/bin/su
adb shell "chmod 6755 /system/bin/su"
adb shell "ln -s /system/bin/su /system/xbin/su"
adb push Superuser.apk /system/app/Superuser.apk
adb push busybox /system/xbin/busybox
adb shell "chmod 755 /system/xbin/busybox"
adb shell "/system/xbin/busybox --install /system/xbin"[/HIGH]
copy su to the phone. Set it's permissions. Create a symlink. Push the superuser apk so that you can actually interact with the su binary through an app. install busybox (there's a busy box app in the market that lets you update/remove busybox)
After rooting but before running the pwnage tool though I would do the following in adb. I believe that the cp commands should all work, if they error I doubt it matters much as long as the dd commands succeed. This should give you a backup of pretty much everything the pwnage tool modifies.
[HIGH]adb shell
su
dd if=/dev/block/mmcblk0p2 of=/sdcard/stock_backup/mmcblk0p2.img bs=4096
dd if=/dev/block/mmcblk0p3 of=/sdcard/stock_backup/mmcblk0p3.img bs=4096
dd if=/dev/block/mmcblk0p5 of=/sdcard/stock_backup/mmcblk0p5.img bs=4096
dd if=/dev/block/mmcblk0p6 of=/sdcard/stock_backup/mmcblk0p6.img bs=4096
dd if=/dev/block/mmcblk0p7 of=/sdcard/stock_backup/mmcblk0p7.img bs=4096
dd if=/dev/block/mmcblk0p8 of=/sdcard/stock_backup/mmcblk0p8.img bs=4096
dd if=/dev/block/mmcblk0p9 of=/sdcard/stock_backup/mmcblk0p9.img bs=4096
dd if=/dev/block/mmcblk0p13 of=/sdcard/stock_backup/mmcblk0p13.img bs=4096
cp /system/etc/fota_post_boot_up.sh /sdcard/stock_backup/system/etc/fota_post_boot_up.sh
cp /data/gpscfg/* /sdcard/stock_backup/data/gpscfg/
cp /system/etc/install-recovery.sh /sdcard/stock_backup/system/etc/install-recovery.sh
cp /system/etc/recovery-from-boot.p /sdcard/stock_backup/system/etc/recovery-from-boot.p
exit[/HIGH]
then run the pwnage tool, let it do it's thing. I believe that the previous portion will give you copies of everything it's messing with... unless I missed something somewhere.
Once it's complete open adb back up and execute
[HIGH]adb reboot recovery[/HIGH]
Once in CWM goto Backup and Recovery > Choose backup format > Tar
Then create a full backup from that same area. Once it's complete open adb again and execute
[HIGH]adb pull /sdcard/clockworkmod/backup/[/HIGH]
This is going to take a while to complete, but this puts your nandroid into the folder on your PC that adb is running in. Heck, while you're at it... Let's go ahead and get those backup images and files stored on your computer as well.
[HIGH]adb pull /sdcard/stock_backup/[/HIGH]
Now, you have backups that you can restore from your computer to your SDcard if need be.
At this point, you can install whatever you want to the phone. You can take it back to original (within reason...). No ROM should touch anything that you dont have backed up in those images or in your nandroid.
To restore, just do a restore from within CWM. Then once you're booted execute those previous dd commands, just swap the if= and of= portions of each. Just MAKE SURE you match the pX portion to the right one as these correlate to the partitions on the device. If you flash the wrong partitions image on a partition... Bad things will happen. None of the files that you copied with the cp commands should really matter, I don't believe... but you would copy those back by flipping the portions at the space between the two paths.
Hopefully this helps clarify some.