I thought I understood until now.
If I use the long method and follow the instructions listed does that already give me a custom recovery, or do I need to go the ADB route you are referring to. Or Do I totally have it mixed up. Thanks so much for your help and your work thus far.
you have it mixed up ...
1) SDK = system developer kit you need this to have ......
2) ADB = allows your PC to connect to your phone so you can use ....
3) CMD = command promt which is the interface between you and your phone when using ADB. You use ADB to....
4) Root = This gives you "root" access parts of the phone you typically wouldnt have access to (ie, the root of the phone).
5) Custom Recovery = This is an image on a partition which will allow you to flash images to your phone that do not have an LG signature on them. Without this it is not possible to flash anything other than LG signed things. This also allows you to perform a ....
6) Nand backup = This is an image of your phone in its current state. Think of it like making a backup of your PC. You can always go back to that "image" and you are back to exactly how things were at that time. Note: Nandroid images do not include things such as radios.
7) ROM = Read Only Memory is what ROM stands for but to simplify it, this is a custom OS for your phone created by someone other than the manufacturer or carrier. Because a "ROM" doesn't carry the manufacturers signature, you need a custom recovery to flash it.
Take the above knowledge and apply it to this sentence:
You need to have the SDK installed, that way you can open a CMD prompt and use ADB to root your phone and flash a custom recovery. Once you have root and custom recovery, you can make a nanddroid backup of your phone then flash a custom ROM. If you don't like the ROM, just restore the nandroid backup.
sdk = tool
adb = tool
cmd = interface
root = action (requires sdk, adb, cmd)
custom recovery = image (requires sdk, adb, cmd, root)
nandroid backup = action (requires custom recovery)
ROM = image (requires root, custom recovery)