the simple answer is you need to root. See
here for how to. I've had good luck with
z4root. When I got my first P509, I rooted but was scared to flash a recovery and rom for fear of bricking my shiny new phone. The fact is though, the only thing that has ever bricked my phone has been KDZ which is an official LG tool.
Once you root, there are many ways that you can go about removing unnecessary bloat. Probably the most popular way is to use
Titanium backup which can be downloaded from the market which allows you to uninstall any application on your phone once you grant TiBackup root access.
You could also use
Root Explorer (also on the market) which requires that you know a little bit about the phone system itself but will get the job done, if you know what you're doing. Personally I dislike both methods because I don't 'manage' my phone from my phone, too many things can go wrong. Plus, both Titanium Backup and Root Explorer are paid apps. I prefer to use the ADB, but that requires the use of command line which is a big road block for some people.
Should you choose to go the adb route (which assumes that you have installed the Java Development kit available
here and the Android Software Development Kit (or SDK) found
here
Once you have installed the Android SDK, you can execute the adb (which is in the platform tools folder) from the command line. And no, there is no GUI version, the ADB is strictly a command line tool. To access and modify contents of your phone you will need to gain root access via adb shell. Oh yeah, and don't forget, you need to enable USB debugging on your phone!!!
the prompt should change to a pound sign once you have granted "unknown" root access on your phone. once you've gained root access, execute the following command to gain read and write privileges for the phone's system
Code:
mount -o remount,rw -t yaffs2 /dev/block/mtdblock1 /system
Once you've done this you can delete things from your phone's system, but be EXTREMELY careful because you can mess your phone up pretty bad if you don't know what you're doing.
first, change directory (the command is literally
cd) into /system/app which is where all non removable apps are stored on your phone
then you can bring up a list of all the files in the folder with
then you can delete the unnecessary apps with
I CANNOT STRESS THIS ENOUGH!!!! Be extremely careful about what you delete in here. it is highly recommended that you use the absolute path to the file you are deleting as to minimize accidental cases of
which will probably brick your phone.