Guest ztedd Posted February 1, 2011 Report Posted February 1, 2011 (edited) what's included in this guide (updated 2011-02-17 01:19):Explanation of the terms: App2SD / Move2SD, A2SD, A2SD+, changing partition sizes.Why even if you use App2SD / Move2SD / A2SD you still can get into troubles with little space left: android system has 3 different places where it saves data of an installed app. How to check how much space is used / free.A A2SD vs. App2SD/MOVE2SDB changing partition sizes (to get more space from unused space in system and cache)C A2SD+ - moving data or dalvik-cache to sd card -------------------------------------------------------- Explanation of the terms (you might also want to read the glossary): App2SD / Move2SD - feature officially included in Android 2.2 (Froyo) (no root necessary), some apps can be partially moved to SD card, i.e. *.apks are moved to /sdcard/.android-secure (on fat32 partition). Can be done using android settings - apps - ... - move to SD card or using the app "Apps 2 SD". Normally only works with apps supporting the feature and needs to be done manually, but with the app "Move2SD Enabler" (root only) it's possible for all apps and automatically. Has the disadvantage that moved apps won't work if SD card is mounted to the PC connecting the phone by USB or if the SD card is removed. A2SD - feature included in most of the new Custom ROMs (see comparison table). Moves *.apks to SD card similar to App2SD, but works automatically and apps even work if the SD card is mounted to the PC connecting the phone by USB (and many apps even work if the sd card is temporally removed after boot). Moves the apks to the ext2 partition of the sd card instead to the fat32 partition as App2SD does. Therefore partitioning of the SD card is needed, it can be done using Clockworkmod or with partitioning software. A2SD+ - feature so far included in MoDaCo Custom Froyo and can be installed manually if A2SD is working already and if you have root access. Does not only move the *.apks to ext2 on SD card, but also the dalvik-cache or data folder, depending on what you decide to move. Is supposed to possibly slow down apps or system, but there are not enough experiences yet to clearly state the extent of that. Notably increases read/write to SD card so potentially reduces card life (as system and apps are accessing SD card for dalvik-cache while starting and accessing the data folder while running). changing partition sizes - feature included in some Custom ROMs using the TPT install method (e.g. Japanese Jellyfish RLS9), but is also able to be done with every other ROM, including Stock ROMs, no root necessary. Will change the size of the internal ROM /system and /cache partitions, removing unused (and unnecessary) free space from them to give the /data partition more free space. You can get up to 330 MB space for your /data partition!-------------------------------------------------------- However, even if you use App2SD / Move2SD / A2SD you can still get into troubles with little space left. This is because of android's design, if you install an app, it will create stuff in these folders: 1. /data/app/XYZ-1.apk -> original .apk file; this is used by the dalvik machine to create executable and is used by paket manager to restore default data (if you go to Settings - Apps - manage apps - (select an app) - delete data + cache -> if you use A2SD, this folder will be on your sd card (mounted to /system/sd, with symlink to /data/app) -> if you use App2SD, then some of the apps in this folder are moved to /sdcard/.android-secure (only the ones that enabled the Move2SD function and only the ones you manually move using settings - apps or "Apps 2 SD" app) 2. /data/dalvik-cache/data@[email protected]@classes.dex -> this is the dalvik-executable file of the app - compiled for YOUR android phone. the app won't be executable without this, but you can delete it and it will be restored after next reboot. for compiling it uses the classes.dex inside the XYZ-1.apk zip archive (see 1.) 3. /data/data/XYZ -> this is the data folder of your app. it will be created on install (from the content in the .apk's res, lib and assets folders) and be changed by your app. If you choose "delete data" in the settings - apps menu, this folder will be reseted to the default data, using the .apk file located in (1.) -> so it's save to delete the contents of this folder, but it will be restored on next start of the app SO: even if you use A2SD (/data/app located on ext2 partition on the sd card) or Apps2SD (.apk files are stored on /sdcard/.android-secure and mounted to /mnt/asec ), you still will have the same space or even a bit more in the /data/dalvik-cache and the /data/data/ folders. You can solve that problem by following the sections B and C in this guide (changing the partition sizes in order to get more free space, section B and moving data or dalvik-cache to sd card, section C). -------------------------------------------------------- Do you want to check how much space is used / free? You can go to android settings - sd card. There you can see the free space of /data and /mnt/sdcard. However these two are not all partitions used. To check the space of the other partitions, you have 2 options: - (root needed) Use the app Rootexplorer or ES File Explorer and browse to the different places (/system, /cache, /data, /mnt/sdcard, /system/sd) to check the free space. Or use adb / terminal to browse to them (commands cd and ls) and check used space with command "du -sk". - Alternatively (also without root possible) do this to have a look on the free space of the different partitions: open terminal or adb shell and type "busybox df -h". If there are too many lines, type: "busybox df -h | head". If you don't have busybox installed, just type: "df". /data is the data partition on the internal flash memory, /system/sd is the ext2 partition on the sd card and /mnt/sdcard is the sdcard. In android settings - sd card you can only see the free space of /data and /mnt/sdcard, however /system/sd won't appear there. -------------------------------------------------------- A A2SD vs. App2SD/MOVE2SD: (root needed or a Custom ROM with A2SD support) Highly recommended. If you want to use A2SD, check if your ROM supports it (in the ROM comparison table there is a column for it). A2SD is also possible if your ROM doesn't support it, however it will be more difficult. To install A2SD you need to partition your SD card. To do this: 1. Backup the content of your SD card to your PC (using your PC file manager while usb connected to PC) 2. partition your SD card using clockworkmod recovery (on boot press Volume Down + Power Button, then in clockworkmod menu choose partition sd card - choose ext2 or ext3 (I recommend ext2, here is some discussion on ext2 vs. ext3) - then choose size of ext2: I recommend between 512 MB and 1024 MB - choose size of swap: 0MB, as swap isn't needed) Caution! You should use Clockworkmod 2.5.1.8 or higher, as the previous versions didn't partition correctly. 3. if necessary: copy your backup back to your sd card 4. either - your ROM should support A2SD or - you have to install it manually. ( For that you would need an init.d boot script that (a.) mounts the ext2 partition on your sd card to /system/sd and (b.) moves your /data/app folder to /system/sd, creating a symlink (symbolic link) from /data/app to /system/sd/app. Where to get that boot script? - Perhaps someone has a link. If it's needed, we can upload such a script taken from a custom ROM. ) -- You can see if A2SD is working if you browse to /system/sd folder with an Root Explorer, as described above or if you execute the "df" command. If there is something inside /system/sd (some apps in the dir "app" resp. some space used as you can see with "df"), then A2SD is working. -- A note to A2SD vs. Apps2SD: Using Apps2SD you will get problems when the SD card is not mounted. Using A2SD (ext2 partition on sd card), you can even connect your phone to the PC using USB and dismount the SD card on the phone to mount it on the PC - the ext2 A2SD partition will still work. But if you use Apps2SD (/sdcard/.android-secure folder), then something won't work if you unmount the sd card. Also important: if you use A2SD, then you shouldn't use the Move2SD function from the android 2.2 system or the Apps 2 SD app that is a frontend of this. Explanation: if you have A2SD then all your apps will be installed to /system/sd automatically, i.e. to the sd card. However they appear to be "on the phone" if you use the Apps 2 SD app or have a look in settings - apps. If you move them to the sd card, then they will be moved to the /sdcard/.android-secure dir, i.e. from SD card to SD card. So that`s kind of useless and they won't work if SD card is mounted to PC while phone connected by USB. -- A general note on the question whether to use the App2SD / A2SD feature: As the .apk files (in 1.) are supposed to be accessed only when installing the app, re-creating the dalvik cache file or deleting the data of the app (reseting it to default data), there generally is no performance issue using A2SD. I therefore highly recommend it. -------------------------------------------------------- B changing partition sizes (to get more space from unused space in system and cache): (no root required; works with ALL ROMs) Recommended! Especially if A2SD isn't enough for you... Perhaps you can get more space from unused spare space in the /system and /cache partition. Example: Before: /system 210 MB - 125 MB used - 85 MB free (=wasted!) /cache 40 MB - 2 MB used - 38 MB free (=wasted!) /data 210 MB - 200 MB used - 10 MB free (problem with space, warning that no space left!) After: /system 128 MB - 125 MB used - 3 MB free /cache 4.5 MB - 2 MB used - 2.5 MB free /data 330 MB - 200 MB used - 130 MB free ( :-) ) How to change your partition layout: (no root required; works with ALL ROMs) 1. create an nandroid backup, either * using clockwork recovery, pressing Volume Down while pressing power on button on startup) * or using ZTE-Blade Recovery Manager or some other nandroid backup tool. 2. download the partition layout suitable for your /system size ([Custom] ROM size), e.g.: * 128 MB system, 4.5MB cache, 324MB data: shrink_cache_sane.zip by wbaw (MD5 sum: 5eb8c0f5bba4e02fe30b86a96eb64ef8) * 136 MB system, 1.5MB cache, 319MB data: partition_1_136_319.zip]/url] by wbaw (MD5 sum: 8c1f3c28c317a435321e31cb31477e28) Caution! Not all ROMs will work with a 128 MB system partition. If your ROM is bigger, you must install a bigger partition layout. Or you can uninstall apps from the /system/app folder that you don't need or reinstall them in /data/app. How to do this? 1.) Download the App "Uninstaller for Root" from the market, 2.) Backup the /system/app/XYZ.apk of the App to your sdcard (using "Uninstaller for Root" or manually). 3.) Install the XYZ.apk from your sdcard (in the folder 'RootUninstaller') using a File manager. For example, Google maps (Maps.apk) is around 5 MB. * other layouts you can get from the thread Partition layout change or Partition Mod for Japanese Jellyfish RLS9 (you just need the 2 files appsboot.mbn and partition_zte.mbn from the archives) * Caution! the 2 files 'appsboot.mbn' and 'partition_zte.mbn' really shouldn't be corrupted because that potentially could permanently damage (brick) the phone. Therefore you should always check MD5 checksums, e.g. using md5sum tool for windows. 3. create a new dir on your SD card, 'image'. low case. copy the content of shrink_cache_sane.zip in this folder (appsboot.mbn and partition_zte.mbn). Then copy the bin files from your nandroid backup to this folder, boot.img, recovery.img, system.img, data.img. Then rename data.img to userdata.img 4. You also need the files 'appsboothd.mbn' and 'partition.mbn'. You can get them from a TPT (Total Phone Transfer) Image Zip-File, e.g. from Japanese Jellyfish RLS9 (download the Japanese_Jellyfish_RLS9_image.zip). 5. Now you should have a directory "image" on your sd card, containing these files: * appsboot.mbn * partition_zte.mbn * boot.img * recovery.img * system.img * userdata.img * appsboothd.mbn * partition.mbn 6. ensure your battery is not empty, then turn on your phone with volume up button pressed. some green text will appear ("Update from T-Card" or something like this). If it doesn't work, try pressing volume up and menu button. 7. wait for the process to complete (2mins max.) 8. Now you should have partition sizes changed and about 100MB more free space left 9. After loading the new firmware, it makes sense to rename the /image folder, such as to /flashedimage, so that it cannot be accidentally reflashed again in the future. "How do I undo this?" -> have a look in the standard solutions thread at the very bottom ("I have changed my partition sizes to have a 128MB system, I want to change it back"). Using this partition layout you can switch back to the standard partition layout: No ROM, Just 2 Clockwork partitions, sets all partitions back to stock, you will need to use the Mounts/USB Mount in clockwork to put a ROM back on http://www.mediafire.com/?xtckadj09b7sxt2 (MD5: C8010D841AF463F3CB1FDEDFFAFA3B1E ) Note: the /cache partition is only needed for downloads from the market. If you want to download an app bigger than 4.5 MB, you will have to move the /cache directory to /data. For this you can use the following cache redirect script: The install procedure is slightly different depending on which ROM you use. - If you use FLB-Froyo or any other ROM that loads userscripts from /etc/init.d/ then create the file: /etc/init.d/80redirectcache with the following code:#!/system/bin/sh # # #### START - Redirect cache partition to /data #### mkdir /data/cache chown system.cache /data/cache chmod 770 /data/cache mkdir /data/cache/recovery chown system.cache /data/cache/recovery chmod 770 /data/cache/recovery mkdir /data/cache/lost+found chown root.root /data/cache/lost+found chmod 770 /data/cache/lost+found umount /cache rmdir /cache ln -s /data/cache /cache #### END - Redirect cache partition to /data ####After creating the file (using adb push or Rootexplorer), make sure to get the script file executable - open terminal and execute these commands:su chown root.shell /etc/init.d/80redirectcache chmod 755 /etc/init.d/80redirectcache - If you use Japanese Jellyfish or any other ROM that loads userscripts from /system/bin/userinit.sh then you have to insert the above code in that file (only the code starting with "#### START - Redirect cache"). Insert it at the end of the file but before the following line: "/system/bin/setprop userinit.filesystem.ready 1" (if existing). - You can also add the code to /system/etc/init.qcom.post_boot.sh it should work with most roms using that file. - Alternatively you can redirect the cache to RAM. This possibly speeds up market installs a little bit. Instructions here. -------------------------------------------------------- C A2SD+ - moving data or dalvik-cache to sd card: (root needed or a custom ROM with A2SD+ support) Only recommended if you dont't have enough space after finishing steps A (A2SD) and B (changing partition sizes) The last possibility is to move either /dalvik-cache or the /data/data dir to your sd card. Be careful! I don't recommend that in general because your system possibly will be slower because the SD card is supposed to be much slower than the ROM drive. The dalvik cache will be accessed every time an app starts, it will transfer the compiled files from the cache to the memory. So the start of an app will be slower perhaps but then it's okay (however as we know, android often terminates or pauses apps in background and they are "silently restartet" if you switch to them again, so also this will be slower). The /data/data/ dir will be accessed by the apps, e.g. browser cache. So it depends on the app if it will be slower because of the moved folder. How to move the data folder or dalvik-cache: Sometimes this is also described by the term "A2SD+". Some Custom ROMs support it (e.g. MoDaCo Custom Froyo, according to the comparison table). So if you use MoDaCo Custom Froyo and have A2SD enabled (by having created the ext2 partition on the sd card as explained in section A), then also the dalvik-cache will be moved to the sd card. However you also can do it by yourself if you already have A2SD enabled (this is necessary, as well as root access). start the terminal and type (without |): in order to move /data/data: | su | cp -pr /data/data /system/sd | rm -r /data/data | ln -s /system/sd/data /data/data Be careful! you will loose all your application data if this fails. however usually the default data can be restored by android using the .apk file. I recommend creating a Titanium Backup before doing this (as well as an nandroid backup). and in order to move dalvik-cache: | su | cp -pr /data/dalvik-cache /system/sd | rm -r /data/dalvik-cache | ln -s /system/sd/dalvik-cache /data/dalvik-cache If the dalvik-cache should get lost, it's not such a problem because it will be easily recreated on reboot (taking some minutes the first time). However, the dir /data/dalvik-cache should exist and be accessible for the system (or the according symlinked dir). Caution! If you do this, most of the apps or even the whole system won't work if the whole SD card is ejected / unmounted! Edited February 17, 2011 by ztedd
Guest Phoenix Silver Posted February 1, 2011 Report Posted February 1, 2011 wow amazing work ty ;) my config is : fat 32 part 1.5 gigs ext3 part 512 megs a2sd a2sd+ dalvik cache moved to sd card in ext3 part works fine until now
Guest ztedd Posted February 1, 2011 Report Posted February 1, 2011 (edited) dalvik cache moved to sd card in ext3 part works fine until nowhow did you move the dalvik-cache (using some boot script or just move + symlink)? did you notice any performance difference to having the dalvik-cache on the ROM drive? perhaps someone could use a stopwatch to compare the time needed to start a certain bigger app - once having the dalvik-cache on the ROM and once on SD. (the app should be killed - then start the app again and stop the time) Edited February 1, 2011 by ztedd
Guest Phoenix Silver Posted February 1, 2011 Report Posted February 1, 2011 no i didn't notice any performance symlink
Guest Posted February 1, 2011 Report Posted February 1, 2011 did you notice any performance difference to having the dalvik-cache on the ROM drive? no i didn't notice any performance ;)
Guest ztedd Posted February 2, 2011 Report Posted February 2, 2011 Added some notes on the right version of Clockworkmod, choosing of filesystem (ext2 vs. ext3, perhaps can be more elaborated) and getting to know the free space of the different mounts. -- Has anyone yet compared the general performance of (the starting of) apps having /data/data or /data/dalvik-cache either on the internal flash memory or moved to sd card?
Guest ztedd Posted February 4, 2011 Report Posted February 4, 2011 Added clearification on how to check the free space in the different directories / partitions. you can see if A2SD is working if you browse to /system/sd folder (for that you need root access. Use the app Rootexplorer, terminal or adb) and check if there is something inside. /system/sd is the ext2 partition on your sd card. Alternatively (also without root possible) do this to have a look on the free space of the different directories: open terminal or adb shell and type "busybox df -h". If there are too many lines, type: "busybox df -h | head". If you don't have busybox installed, just type: "df".
Guest ztedd Posted February 4, 2011 Report Posted February 4, 2011 Added overview, explanating the most relevant terms:App2SD / Move2SD - feature officially included in Android 2.2 (Froyo) (no root necessary), some apps can be partially moved to SD card, i.e. *.apks are moved to /sdcard/.android-secure (on fat32 partition). Can be done using android settings - apps - ... - move to SD card or using the app "Apps 2 SD". Normally only works with apps supporting the feature and needs to be done manually, but with the app "Move2SD Enabler" (root only) it's possible for all apps and automatically. Has the disadvantage that moved apps won't work if SD card is mounted to the PC connecting the phone by USB or if the SD card is removed. A2SD - feature included in most of the new Custom ROMs (see comparison table). Moves *.apks to SD card similar to App2SD, but works automatically and apps even work if the SD card is mounted to the PC connecting the phone by USB (and many apps even work if the sd card is temporally removed after boot). Moves the apks to the ext2 partition of the sd card instead to the fat32 partition as App2SD does. Therefore partitioning of the SD card is needed, it can be done using Clockworkmod or with partitioning software. A2SD+ - feature so far included in MoDaCo Custom Froyo Beta11 and can be installed manually if A2SD is working already and if you have root access. Does not only move the *.apks to ext2 on SD card, but also the dalvik-cache or data folder, depending on what you decide to move. Is supposed to possibly slow down apps or system, but there are not enough experiences yet to clearly state the extent of that. Notably increases read/write to SD card so potentially reduces card life (as system and apps are accessing SD card for dalvik-cache while starting and accessing the data folder while running). changing partition sizes - feature included in some Custom ROMs using the TPT install method (e.g. Japanese Jellyfish RLS9), but is also able to be done with every other ROM, including Stock ROMs, no root necessary. Will change the size of the internal ROM /system and /cache partitions, removing unused (and unnecessary) free space from them to give the /data partition more free space. You can get up to 330 MB space for your /data partition!
Guest Ice-berg Posted February 4, 2011 Report Posted February 4, 2011 Hello. I am doing everything according to the instructions (I have an A2SD) and after entering the command: rm -r/data/data I have: rm filed for -r/data/data, No such file or directory I do not understand, because I have ext partitions and install applications on it(I have folders system/sd/app and app-private Is there something I'm doing wrong?
Guest ztedd Posted February 4, 2011 Report Posted February 4, 2011 Is there something I'm doing wrong?Yes, there seems to be a space missing in your command. It should be "rm -r /data/data" instead of "rm -r/data/data". Caution: Only delete /data/data after you already have succesfully copied this dir to /system/sd/data and checked if the content arrived there and after you have made a backup (Titanium, nandroid, or both).
Guest Ice-berg Posted February 5, 2011 Report Posted February 5, 2011 Actually, my mistake. Thanks for the information. But I have another problem, Ive done it again, this time it all worked out. I had over 128MB. free space on internal memory after I did it(before I was about 85MB.). But as I turned off the phone and turned on again after a while everything returned to the situation which was before modification. Internal memory has returned to earlier 85MB. I do not have a folder system/sd/data ?
Guest ztedd Posted February 5, 2011 Report Posted February 5, 2011 are you sure that A2SD is working and the copying really succeeded? I guess that the folder wasn't copied correctly. And after copying the old folder has to be deleted and then replaced by the symlink pointing to the new folder. So check if the commands worked after each command. Which rom do you use btw?
Guest ztedd Posted February 8, 2011 Report Posted February 8, 2011 (edited) updated instructions how to move /cache:Note: the /cache partition is only needed for downloads from the market. If you want to download an app bigger than 4.5 MB, you will have to move the /cache directory to /data. For this you can use the following cache redirect script: The install procedure is slightly different depending on which ROM you use. - If you use FLB-Froyo or any other ROM that loads userscripts from /etc/init.d/ then create the file: /etc/init.d/80redirectcache with the following code:#!/system/bin/sh # # #### START - Redirect cache partition to /data #### mkdir /data/cache chown system.cache /data/cache chmod 770 /data/cache mkdir /data/cache/recovery chown system.cache /data/cache/recovery chmod 770 /data/cache/recovery mkdir /data/cache/lost+found chown root.root /data/cache/lost+found chmod 770 /data/cache/lost+found umount /cache rmdir /cache ln -s /data/cache /cache #### END - Redirect cache partition to /data ####After creating the file (using adb push or Rootexplorer), make sure to get the script file executable - open terminal and execute these commands: - If you use Japanese Jellyfish or any other ROM that loads userscripts from /system/bin/userinit.sh then you have to insert the above code in that file (only the code starting with "#### START - Redirect cache"). Insert it at the end of the file but before the following line: "/system/bin/setprop userinit.filesystem.ready 1" (if existing). Edited February 13, 2011 by ztedd
Guest ztedd Posted February 8, 2011 Report Posted February 8, 2011 post got lost during edit, now fixed.
Guest wbaw Posted February 13, 2011 Report Posted February 13, 2011 (edited) You can also add those /cache redirection lines to /system/etc/init.qcom.post_boot.sh it should work with more roms using that file. Edited February 13, 2011 by wbaw
Guest ztedd Posted February 15, 2011 Report Posted February 15, 2011 (edited) Thanks wbaw, I updated the guide to include that. You also suggested to move /cache to RAM. For that, one should use the following code for redirecting the cache (instead the above posted code):#### START - mount /cache as tmpfs #### umount /cache mount -t tmpfs -o size=42M,nr_inodes=42k,mode=0770 tmpfs /cache chown system.cache /cache #### END - mount /cache as tmpfs ####As every tmpfs, it will store the /cache files in RAM, only using as much RAM as temporarily necessary. So if 5 MB of cache are used, only 5 MB of RAM will be used (even if the /cache tmpfs partition is 42 MB). I'm not sure how much it will be speed up market app installations. Probably not very much if the internet speed isn't higher than the internal ROM speed. Some testing with stop watch would be necessary to tell that by sure... Edited February 15, 2011 by ztedd
Guest prasad_den Posted February 16, 2011 Report Posted February 16, 2011 I use JJ9 on my San Francisco, and it supports A2SD by default. Now, I did the SD card partitioning (following this guide) only yesterday. How can I ensure that the apps I had installed prior to the partitioning are also moved to the card? Or does it occur automatically. As of now, there seems to be no change in the internal memory.
Guest nre Posted February 16, 2011 Report Posted February 16, 2011 I use JJ9 on my San Francisco, and it supports A2SD by default. Now, I did the SD card partitioning (following this guide) only yesterday. How can I ensure that the apps I had installed prior to the partitioning are also moved to the card? Or does it occur automatically. As of now, there seems to be no change in the internal memory. I'm interested in the answer to this one too :D
Guest ztedd Posted February 17, 2011 Report Posted February 17, 2011 I use JJ9 on my San Francisco, and it supports A2SD by default. Now, I did the SD card partitioning (following this guide) only yesterday. How can I ensure that the apps I had installed prior to the partitioning are also moved to the card? Or does it occur automatically. As of now, there seems to be no change in the internal memory.Normally if your ROM supports A2SD and it detects an ext2 partition on SD, then it should copy everything from /data/app to /system/sd/app and then symlink it and delete the old /data/app dir. So it should work with the ROM`s A2SD script. Are you sure it worked like that? Check if there is the symlink /data/app (directing to /system/sd/app) instead of the directory /data/app. You might also try to move the apps to SD card using APP2SD, then move them back to "internal" which in fact will move them to A2SD partition.
Guest mouseman99 Posted February 17, 2011 Report Posted February 17, 2011 ok guys. require some assistance on this please. I have followed these guidelines tonight and also at the same time have changed to FLB r9 rom. I done a titanium backup before installing ROM and also copies my old contents of the SD card over to my PC (I have since copied backl). Rom has been installed fine and a2sd seems to be ok as well (Titanium backup shows a2sd at the bottom (but with only 10mb used) I am however missing all my apps. I can see them in Titanium Backup but when I restore it runs through the batch but the apps dont appear back in the app drawer. Is there something I am doing wrong???? Hope someone can help
Guest PrettyPistol555 Posted February 23, 2011 Report Posted February 23, 2011 AWESOME Guide!!!!! can this be done on other android devices as well, or is it unique to ZTE Blade? I'm particularly wondering about nexus one, as i have a lot of system cache that is unused, but running out of space for apps. if there is a guide elsewhere that i should be aware of please link, i searched Modaco AND google, and found nothing about re-sizing these partitions. THANKS. :huh:
Guest m29 Posted February 23, 2011 Report Posted February 23, 2011 Not working for me ... sorry. got an HTC Desire with Modaco R9 installed. Did the partitioning size thing. I have a folder "image" on my SD-Card, containing almost all the files details (I have no recovery.img file in my nand backup folder. I do have an md5 file there too). Rebooted the phone with Vol UP, nothing happened. Rebooted with Vol UP + Menu pressed - restarted in safe mode but htat's it. No green message of "updating" no nothing. Anyone ?
Guest bujcri Posted February 26, 2011 Report Posted February 26, 2011 Thanks wbaw, I updated the guide to include that. <a name="cache_in_ram"></a>You also suggested to move /cache to RAM. For that, one should use the following code for redirecting the cache (instead the above posted code):#### START - mount /cache as tmpfs #### umount /cache mount -t tmpfs -o size=42M,nr_inodes=42k,mode=0770 tmpfs /cache chown system.cache /cache #### END - mount /cache as tmpfs ####As every tmpfs, it will store the /cache files in RAM, only using as much RAM as temporarily necessary. So if 5 MB of cache are used, only 5 MB of RAM will be used (even if the /cache tmpfs partition is 42 MB). I'm not sure how much it will be speed up market app installations. Probably not very much if the internet speed isn't higher than the internal ROM speed. Some testing with stop watch would be necessary to tell that by sure... I did this and it worked, but every time I reboot the change is gone and my cache comes back to 4.5 MB (I use 128 MB system, 4.5 MB cache, 324 MB data partitioning). Shouldn't this cache-to-ram be permanent? I use FLB 9b, Blade LCD, 5 MP.
Guest wbaw Posted February 26, 2011 Report Posted February 26, 2011 Not working for me ... sorry. got an HTC Desire with Modaco R9 installed. Did the partitioning size thing. I have a folder "image" on my SD-Card, containing almost all the files details (I have no recovery.img file in my nand backup folder. I do have an md5 file there too). Rebooted the phone with Vol UP, nothing happened. Rebooted with Vol UP + Menu pressed - restarted in safe mode but htat's it. No green message of "updating" no nothing. Anyone ? Try doing it on a ZTE Blade or Orange San Francisco, rather than a HTC Desire.
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now