Disclaimer:If you unmount the SD card, remove it, or enter USB Mass Storage Mode, the apps are no longer available. (thanks iamlilysdad)
KSmithInNY, our resident Optimus S expert also adds:
~~~~~
You can move most apps manually to the SD Card, even if the "Move to SD" option is greyed out in the Application Manager.
This guide assumes you already rooted your phone, and thus have adb.
First adb shell into your phone, then su
cd /data/app
find the large app you want to move to your SD Card (I wouldn't recommend system items like Swype, ect, that run all the time).
Some items cannot be moved, like google maps.
Anyway once you find your file, run this:
pm install -r -s com.the.package.file-1.apk
For example, if you want to move org.zwanoo.android.speedtest-1.apk (Speedtest.net app):
pm install -r -s org.zwanoo.android.speedtest-1.apk
What this does:
"pm install -r" reinstalls an app without deleting it or its data. "-s" specifies the SD Card.
To move it back to the phone, go back to the Application Manager on the phone and "Move to Phone" will be available.
KSmithInNY, our resident Optimus S expert also adds:
Also you should never do this with an app that has a widget that you use. If it has a widget and you don't use it that's fine but active widgets will experience issues running off an SD card.
~~~~~
You can move most apps manually to the SD Card, even if the "Move to SD" option is greyed out in the Application Manager.
This guide assumes you already rooted your phone, and thus have adb.
First adb shell into your phone, then su
cd /data/app
find the large app you want to move to your SD Card (I wouldn't recommend system items like Swype, ect, that run all the time).
Some items cannot be moved, like google maps.
Anyway once you find your file, run this:
pm install -r -s com.the.package.file-1.apk
For example, if you want to move org.zwanoo.android.speedtest-1.apk (Speedtest.net app):
pm install -r -s org.zwanoo.android.speedtest-1.apk
What this does:
"pm install -r" reinstalls an app without deleting it or its data. "-s" specifies the SD Card.
To move it back to the phone, go back to the Application Manager on the phone and "Move to Phone" will be available.
Last edited: