We have only 145mb of /data. So after 17 apps i feel 45mb is ok. But still depends on the app size and the amount of data it stores. Dalvik cache is the one which stores lot of data. You should move it sd card 2nd partition using some programs like Link2SD or Apps2SD or that option is present in Samdroid Tools aswell.
Lately i have been moving apps to /system folder to free up space in /data.
For people who want to try read below.
The apps which are present as part of your ROM will usually be in /system/app/. When you update these the app from market (for eg Gmail) will get installed in /data/app which renders the app in /system/app useless. It is just using the space.
in adb shell type
This will show how much space is left on /system and /data. You can then go to /system/app and delete unwanted apps that came in your ROM and apps that were present in your ROM and later updated from market. You can also move some apps which have big apk size in /data/app/ to /system/app. Also delete the dalvik-cache of moved apps in /data/dalvik-cache. Or just go to recovery and clear dalvik-cache. It will rebuild again.
in adb shell
Code:
cd /system/app/
remount rw //give write permission
rm <apkname.apk> //deletes the app
remount ro
//reboot your phone and clear dalvik cache
//this will only freeup /system. Its of not much use. Your /data will still remain same.
//if you want to move apps from data to system
remount rw
cd /data/app/
cp <apkname.apk> /system/app/
chmod 644 /system/app/<apkname.apk>
//if the same app was there in your ROM then find the apk name and delete it aswell
remount ro
//reboot to recovery and clear dalvik-cache
Bookmarks