Time
1 de 4
http://rojanu.wordpress.com/2011/11/30/moving-android-cache-to-sd-card/
Rojanu's Blog
Moving Android cache to SD Card
Posted on30 November 2011
Some Android devices, which have little internal memory or when download data and application data fills the
cache area, will issue “insufficient space” warning. A quickworkaround would be to move device cache and/or
application caches to SC card.
It is assumed that the device is already rooted and a way to run commands on the device is available. i.e “TerminalEmulator” app, Android ADB.
Basically, the idea is to create a cache folder on SD card, remove the cache folder on internal memory and then
link the internal folder to the folder on SD card so SDcard space is used.
To move the cache folder
1
2
3
4
5
umount /cache
mount -o rw,remount -t rootfs rootfs /
rmdir /cache
mkdir /sdcard/cache
ln -s /sdcard/cache /cache
BrowserCache
1
2
3
4
cd /data/data/com.android.browser/cache
rm -R webviewCache
mkdir /sdcard/cache/webviewCache
ln -s /sdcard/cache/webviewCache webviewCache
Google Maps
1
2
3
4
cd/data/data/com.google.android.apps.maps
rm -R files
mkdir /sdcard/cache/files/maps
ln -s /sdcard/cache/files/maps files
Google StreetView
1
2
3
4
cd /data/data/com.google.android.streetrm -R cache
mkdir /sdcard/cache/streetCache
ln -s /sdcard/cache/streetCache cache
Market Cache
1
2
3
4
cd /data/data/com.android.vending
rm -R cache
mkdir /sdcard/cache/marketCacheln -s /sdcard/cache/marketCache cache
imeem Cache
1
2
3
cd /data/data/com.imeem.gynoid
rm -R cache
mkdir /sdcard/cache/imeemCache
18/07/2012 11:14 p.m.
Moving Android cache to SDCard | Rojanu's Blog
2 de 4
4
http://rojanu.wordpress.com/2011/11/30/moving-android-cache-to-sd-card/
ln -s /sdcard/cache/imeemCache cache
Tunewiki Cache
1
2
3
4
cd...
Regístrate para leer el documento completo.