Many of you may or may not know that one of Android 4.3 features are TRIM support
What it basically does is that it cleans your /system /data /cache partitions and makes your phone not to lag
A TRIM command enables your operating system to find the marked pages before you need them and wipe them clean. Cleaning these data pages beforehand saves you time when you need to write on the data pages again. It's like you have your own recycling guy next to your desk, recycling the pieces of paper as they come.
Click to expand...
Click to collapse
Instructions:
Download the Terminal Emulator: https://play.google.com/store/apps/details?id=jackpal.androidterm
Launch the app
Type:
Code:
su
Grant SU access
Type this if you want to clear /system partition
Code:
fstrim -v /system
Type this if you want to clear /cache partition
Code:
fstrim -v /cache
Type this if you want to clear /data partition
Code:
fstrim -v /data
you can also checkout other parameters by typing
Code:
fstrim
-----------------------
i will make a script which can do this just by running it
Thanks for taking your time and reading it
I tough this has been done automatically or @ boot.
Anyhow I'm on 4.3 since it 1st came out and I can confirm it performs much better then 4.2.2 regarding maintaining the speed.
Btw doesn't " lagfix" app do the same thing as the scripts you're gonna make ?
Sent from my HTC One using XDA Premium 4 mobile app
Shan89 said:
I tough this has been done automatically or @ boot.
Anyhow I'm on 4.3 since it 1st came out and I can confirm it performs much better then 4.2.2 regarding maintaining the speed.
Btw doesn't " lagfix" app do the same thing as the scripts you're gonna make ?
Sent from my HTC One using XDA Premium 4 mobile app
Click to expand...
Click to collapse
well yeah
but lag-fix app is really meant for 4.2 because the app has fstrim binary
but still not that different for my upcoming script
fstrim wont happen if you reboot the phone..it only gets triggered only when the battery gets below 40%(weird isn't it)
half i time i dont see it happening
MightyBear007 said:
well yeah
but lag-fix app is really meant for 4.2 because the app has fstrim binary
but still not that different for my upcoming script
fstrim wont happen if you reboot the phone..it only gets triggered only when the battery gets below 40%(weird isn't it)
half i time i dont see it happening
Click to expand...
Click to collapse
Yeah lol , well looking forward to test your script , tho I never use any cache cleaning stuff , seams like unnecessary on 4.3. Still didn't lose the speed after 5/6 days on the same rom unlike on 4.2.2.
Sent from my HTC One using XDA Premium 4 mobile app
Shan89 said:
Yeah lol , well looking forward to test your script , tho I never use any cache cleaning stuff , seams like unnecessary on 4.3. Still didn't lose the speed after 5/6 days on the same rom unlike on 4.2.2.
Sent from my HTC One using XDA Premium 4 mobile app
Click to expand...
Click to collapse
this is just the small thing
the script is gonna do all these three commands thats it lol
even a small baby can do the script lol
yeah your right about speed on 4.3
Does clearing cache and dalvik achieve the same results?
On Android 4.3 TRIM automatically runs when the battery level is above 60%/70% and the screen is off I believe.
Sent from my Nexus 10 using Tapatalk 4
I'm getting this...?
Sent from my SGH-I777 using xda app-developers app
I am getting command not found on MaxHD 14
I'm also getting the command not found error on pure stock ROM 3.22.1540.1, flashed with the RUU.
Related
I could bring these out in a rom, but there are just way too many chefs in the Thunderbolt right now. So why not release a package that will tweak your current rom just as much?
What will this package do?
-Enable init.d support for scripts on startup.
-Enable usb debugging on a clean wipe.
-Add adb root at all times.
IO tweak
-Remount your filesystems(system, data, cache) with less overhead, so you can increase our already incredibly inflated IO score in quadrant. Does it increase real world performance? You be the judge.
Minfree tweak
-Will allow you to keep a higher mount of ram free before Android starts cannibalizing apps to free ram.
rw on boot
-Will allow you to boot at all times with system in rw mode. Handy for adb pushing files to system.
ro on boot
-Self explanatory.
How to use:
Flash kernel via HBoot.
Put PG05IMG.zip on sdcard, and with adb type:
adb reboot bootloader
This will boot to fastboot. All you need to do is hit power to enter bootloader, and it will scan the package and ask to load it. You will know if you have the right package if it says boot.
Note: If you do not have busybox installed, use this:
http://dl.dropbox.com/u/2056318/busybox_1.19_3.zip
Once you have rebooted, take the second package and flash it via clockwork.
When you reboot, all tweaks will be applied for filesystem and minfree. To use rw at boot time:
In adb or terminal emulator, type:
rw_boot (will require you to type su beforehand if in terminal emulator.)
Next reboot will be rw.
For ro:
ro_boot (same thing, type su first if using terminal emulator.)
Next boot will be ro.
In regards to the two above scripts, do not worry if either gives a file not found error. It will still work.
Extra scripts:
sysrw --mounts system as rw.
sysro --mounts system as ro.
Tweaks that did not make the cut:
SD card speed tweak:
I see a lot of rom cooks adding this, but lets face it, HTC added this tweak in before the phone was shipped. I checked. No need to reapply the same thing again. Right, guys? *crickets*
Framework speed up by removing transitions:
Framework isn't eye candy.
Zipalign every boot
Apks can be zipaligned only once. No point in doing this every boot.
Download kernel:
http://www.mediafire.com/?ob2i992sza9y260
Download cwr package with scripts:
http://www.mediafire.com/?7u69f950indjiqe
I will be adding more as time goes on.
good work bud this is gonna be usuful for a lot of people. =)
Sorry for the noobish question but what does "adb root at all times" mean? If I've done the whole rooting process aren't I fully rooted?
Every time i see adryn post something new i pee a little. Guys we are a week in today and already have some great devs.
Sent from my ADR6400L using XDA App
NeutronBomb said:
Sorry for the noobish question but what does "adb root at all times" mean? If I've done the whole rooting process aren't I fully rooted?
Click to expand...
Click to collapse
I have the same question.
ksizzle9 said:
Every time i see adryn post something new i pee a little. Guys we are a week in today and already have some great devs.
Sent from my ADR6400L using XDA App
Click to expand...
Click to collapse
Hahahah. Great post.
asshole..you made me buy a new phone
Can I flash this on top of the Virus Rom or no?
Sent from my ADR6400L using XDA Premium App
Well it does say ANY Rom so I would imagine you'd be safe flashing it
Sent from my ADR6400L using XDA App
NeutronBomb said:
Sorry for the noobish question but what does "adb root at all times" mean? If I've done the whole rooting process aren't I fully rooted?
Click to expand...
Click to collapse
Yes, you're fully rooted - which is to say, you have the ability to su and become root - very little that is running is actually running as root.
If you're running stock kernel, when you adb shell, you'll get a $ prompt ... i.e. you're not root yet, but can become so with a quick su. (Oh, and SuperUser will pop up asking you to allow it.) Nothing you do via the adb command (push, pull, etc) happens as root.
If you're running the patched kernel, when you adb shell, you'll get a # prompt ... i.e. you're root now. (No SuperUser prompt either.) Everything you do via adb (push/pull) happens as root.
Point being: yup, you're root'd - but you ain't root until you're root
I will apply this in my next update and will be standard in all my roms. If that's okay with u
Sent from my ADR6400L using XDA Premium App
Jaywan said:
I will apply this in my next update and will be standard in all my roms. If that's okay with u
Sent from my ADR6400L using XDA Premium App
Click to expand...
Click to collapse
Sure, have at it.
does this kernel retain the ability to fastboot, I keep having trouble with it not working and I am trying to narrow it down.
Thanks Adryn!
This + your debloat + LauncherPro = I'm 100% happy with my TBolt.
You rock dude, I just bought you a beer. =)
Much appreciated.
destroyerbmx said:
does this kernel retain the ability to fastboot, I keep having trouble with it not working and I am trying to narrow it down.
Click to expand...
Click to collapse
fast boot, or fastboot?
fastboot is a feature of hboot, not the kernel.
fast boot is buggy and only works on wifi or 4G. NOT 3G.
Odinist said:
Thanks Adryn!
This + your debloat + LauncherPro = I'm 100% happy with my TBolt.
You rock dude, I just bought you a beer. =)
Click to expand...
Click to collapse
When i get to work here in a bit, Imma try that out. Since I will probably have nothing else better to do haha.
gonna Load this on top of Perfect Storm first and see how it goes.
Everytime adrynalyne posts, an angel gets its wings...
and i tinkle a little bit...
Is there any reason why we couldnt flash the pg05img through CWR?
Other than it not being setup for cwr, and cwr doesn't work to flash kernels yet?
No.
Is it already in your rom?
Sent from my ADR6400L using XDA Premium App
Hey,
So, I checked out both Swiftdroid 2.0 M6 and Joestone's AOSP Gingerbread 2.3.2. I've always noted that even though both these ROMs are noticeably faster, they still lagged while switching apps or when multiple apps at the same time when compared to the stock 2.1.
When I was playing around with Advanced Task Killer, I was surprised to find out that the native 2.1 has around 80-90MB of free RAM after you kill all appslisted by default in Advanced Task Killer. When you try the same thing in Swiftdroid, it gives only 40MB of RAM. And, Joestone's version gives only 60MB.
This is another proof that benchmarks are not everything. Real life performance is difference from benchmark scores.
Is there's a way to increase the free RAM?
I saw a 2.2 ROM which had around 110MB free RAM. But, it was the only one. No other choices. I tried odexing Joe's gingerbread but it didn't give the boost I wanted.
Perhaps Mur4ik can create another modified KDZ? Is it possible to reallocate the NAND chip such that there's more RAM?
Am curious. When you increase SWAP too much, the phone becomes sluggish. Why do you guys try to push the swap to SD while you can create it in internal memory which has better access speeds?
Update
Solutions:
You can try,
Odexing the ROM for more free RAM
Editing the minfree using Auto Memory Manager
SuperChargerv6 Script to modify minfree and apply some more tweaks.
You can use Autostarts to prevent unused widgets from updating and prevent unnecassary apps from starting automatically
You can use swap. Slightly slow but a great alternative
Click to expand...
Click to collapse
nibras_reeza said:
Hey,
So, I checked out both Swiftdroid 2.0 M6 and Joestone's AOSP Gingerbread 2.3.2. I've always noted that even though both these ROMs are noticeably faster, they still lagged while switching apps or when multiple apps at the same time when compared to the stock 2.1.
When I was playing around with Advanced Task Killer, I was surprised to find out that the native 2.1 has around 80-90MB of free RAM after you kill all appslisted by default in Advanced Task Killer. When you try the same thing in Swiftdroid, it gives only 40MB of RAM. And, Joestone's version gives only 60MB.
This is another proof that benchmarks are not everything. Real life performance is difference from benchmark scores.
Is there's a way to increase the free RAM?
I saw a 2.2 ROM which had around 110MB free RAM. But, it was the only one. No other choices. I tried odexing Joe's gingerbread but it didn't give the boost I wanted.
Perhaps Mur4ik can create another modified KDZ? Is it possible to reallocate the NAND chip such that there's more RAM?
Am curious. When you increase SWAP too much, the phone becomes sluggish. Why do you guys try to push the swap to SD while you can create it in internal memory which has better access speeds?
Click to expand...
Click to collapse
Try to clean Dalvik Cache in the Clockwork recovery section...
Remember to hit the thank bottom
I fully agree more ram more zipaligning more compression = better rom 2.6.29 is stable m6 is good if m7 keeps same kernel and keeps these thing's in mind we will all be happy
Sent from my GT540 using XDA App
Also any system utilities etc with mem leaks if we tweak it all I'd be more than happy with the final product
Sent from my GT540 using XDA App
darkanubispr said:
Try to clean Dalvik Cache in the Clockwork recovery section...
Remember to hit the thank bottom
Click to expand...
Click to collapse
I hit the thank button. lol
Is the Dalvik cache an issue in 2.3? Isn't it like cleared on every reboot due to JIT?
@danzano: true. it doesn't mean we should expect mur4ik to do everything. =)
Exactly if I knew how I'd help but for now I give pointers and ask people to help mur4ik but I'm reading heaps and should be developing soon
Sent from my GT540 using XDA App
Danzano said:
Exactly if I knew how I'd help but for now I give pointers and ask people to help mur4ik but I'm reading heaps and should be developing soon
Sent from my GT540 using XDA App
Click to expand...
Click to collapse
That's exactly why I've been trying to reduce RAM usage. xD
darkanubispr said:
Try to clean Dalvik Cache in the Clockwork recovery section...
Remember to hit the thank bottom
Click to expand...
Click to collapse
It was like you said. I got upto 80MB free in Advanced Task Killer after clearing the dalvik cache.
I like to upload an odexed version for recovery but my internet is slow and would take around 4 hours for an upload(assuming the upload doesn't break). So, instead, I'll put together the scripts I used for odexing and instructions to odex by tonight.
Maybe it's because swiftdroid (or any others 2.1+ rom) keeps some apps unkillable. Maybe like home launcher, messaging, dialer, etc can't be close using task killer. Don't know for sure though, I don't have problems switching apps.
N remember, u don't need task killer in 2.1+ roms, well except for gaming when u need all the horse power and for kill "naughty" apps which I prefer to kill via running service.
And no, u can't put swap in nand (internal storage) because it's irreplaceable and the highly usage of it because of swap can reduce its lifetime. As far as I know, gt540 has different chip for ram which has to be more durable than the nand
Do cmiiw!
Sent from my GT540 using Tapatalk
If it uses a different chip then how big is that separate chip are we using all it's potential?
Sent from my GT540 using XDA App
m1st3r1 said:
Maybe it's because swiftdroid (or any others 2.1+ rom) keeps some apps unkillable. Maybe like home launcher, messaging, dialer, etc can't be close using task killer. Don't know for sure though, I don't have problems switching apps.
N remember, u don't need task killer in 2.1+ roms, well except for gaming when u need all the horse power and for kill "naughty" apps which I prefer to kill via running service.
And no, u can't put swap in nand (internal storage) because it's irreplaceable and the highly usage of it because of swap can reduce its lifetime. As far as I know, gt540 has different chip for ram which has to be more durable than the nand
Do cmiiw!
Sent from my GT540 using Tapatalk
Click to expand...
Click to collapse
I know that we don't need a Task Killer even in pre-2.1. Android's memory management is pretty good. But, sometimes, the phone acts dumb trying to be smarter than us. xD
I used Task Killer as a measure to see how much memory I could get with default settings. Advanced Task Killer ignores Launcher, core, phone etc by default.
Putting swap on internal shouldn't shorten its life that much. Usually, the internal NAND is pretty good. They usually have the quality of RAM rather than that of SD. And, both the RAM and ROM are NAND. NAND is an architecture. It basically uses NAND transistors.
Danzano said:
If it uses a different chip then how big is that separate chip are we using all it's potential?
Sent from my GT540 using XDA App
Click to expand...
Click to collapse
I guess it's 256MB of which 167MB is useable. The rest goes to hardware drivers etc.
A simple fix.
http://forum.xda-developers.com/showthread.php?t=1124034
Just one word - SWAP
SWAP is a bit slow for me. After odexing, I'm not having problems anymore.
Thanks for the great work though.
Sent from my GT540 using XDA App
How do you set up swap from what I've read there's several different ways what's best?
Sent from my GT540 using XDA App
Danzano said:
How do you set up swap from what I've read there's several different ways what's best?
Sent from my GT540 using XDA App
Click to expand...
Click to collapse
here's i think it's the best way:
create swap partition in ur sdcard. best way (for me) is to create it via recovery (cwm). dont forget to backup ur sdcard first.
then type in cmd (or terminal emulator):
Code:
adb shell (or su if in terminal emulator)
echo "#!/system/bin/sh" >> /data/local/userinit.sh
echo "swapon /dev/block/mmcblk0p3" >> /data/local/userinit.sh
chmod 0755 /data/local/userinit.sh
mmcblk0p3 means the swap partition is in 3rd partition (fat partition, ext, and then swap, if u dont have swap (fat then swap partition only) use mmcblk0p2
reboot, then type "free" in terminal emulator.
u can use swapper though (by making swap partition first, then configured swapper to use it), the advantage is u can configure the swappiness (number of file that goes to swap), but for me, swapper taking some amount of ram, and i think it's not good.
Is it possible to give mybe little more simplified instructions think I stuffed it up so did a wipe and going to try again also mur4iks custom kdz rom the partition one is it best to install that first? Or will swap be fine without it
Sent from my GT540 using XDA App
Use swapper 2 from market. Use mini partition tool to create a swap partition in your SD. Search around. You'll find plenty of resources. SWAP would not modify system. Only the SD. It is not a matter which ROM as long as they support swap. If you are on swiftdroid, toto settings > cyanogenmod settings > performance.
Danzano said:
Is it possible to give mybe little more simplified instructions think I stuffed it up so did a wipe and going to try again also mur4iks custom kdz rom the partition one is it best to install that first? Or will swap be fine without it
Sent from my GT540 using XDA App
Click to expand...
Click to collapse
Sent from my GT540 using XDA App
I'm currently on m6 o/c ill start installing swap etc now
Sent from my GT540 using XDA App
So I'm confused; what is the correct order to start upgrading your Huawei u8800? Which is the thing to start with? From what i gathered, the first thing is to do a backup and the best way to do it is with Clockworkmod, but when i check CWM page here on XDA, it says root requiered. Ultimate Guide to Huawei U8800 says that i can root the phone with Super Boot, so should i just go with that and worry about backup later? What if i screw my phone up and don't have a backup? Then is the part of selecting a proper ROM, and i think that i'm interested in the most stable one, so wich one i should go with (oh, and a circular battery with a presentage would be nice) custom or just a firmware update? And the Re-Partition mentioned in MoDaCos Ultimate Guide to Huawei U8800, does it also require a root?
Sorry for the n00b questions, but well, i am one.
I would recommend upgrading to stock ROMs first, but in order to install a custom ROM, you need both root and recovery mod. These 2 functions are being are done from the "shadow" memory, using 2 img files (boot.img and recovery.img).
To access that memory and replace the 2 files follow these steps:
1) Download the boot file and rename it to boot.img ( should be "boot.u8800-modaco-superboot-r1") from here:
http://android.modaco.com/content/h...nd-then-some-for-the-huawei-u8800-ideos-x5/om here the zip file (rename if not called that recovery.img).
2) Download and extract the recovery file (extract.zip) from here:
http://forum.xda-developers.com/showthread.php?p=14870348
3) Turn off your phone and unplug the usb cable. Make sure you have enough battery (at least 50%).
2) Turn on your phone, holding VOL+, VOL- and POWER (should come up with pink screen, to indicate access to shadow memory)
3) Connect the usb cable and the driver should install (don't worry if it says drivers not found, the partition called "image" should still be accessible)
4) Browse your phone to find the folder with boot.img and recovery.img. Copy these 2 files somewhere on your computer, to create a backup of the original files. Now, replace both files with the ones you've downloaded.
5) Remove the battery from the phone to exit "shadow" memory.
To access the recovery mod, press VOL+ and Power, while the phone is off.
I hope this helps...
It does help, thanks! The rooting AND the recovery installation are done simultaneously. But i still have few conserns. Does this all work backwards? I mean in the case of hardware breakage - if i am giving the phone back to maintenance - can i just re-replace the original boot.img and recovery.img and thus "unroot" the phone? Previously recovering backupped data? Is the phone then as it were before whole prosidure?
Vk_ said:
It does help, thanks! The rooting AND the recovery installation are done simultaneously. But i still have few conserns. Does this all work backwards? I mean in the case of hardware breakage - if i am giving the phone back to maintenance - can i just re-replace the original boot.img and recovery.img and thus "unroot" the phone? Previously recovering backupped data? Is the phone then as it were before whole prosidure?
Click to expand...
Click to collapse
Yes, replacing all things you done with stock will by default revert it to normal.
Right. One more thing, though this is a bit beside the subject. The re-partitioning, when upgraded from 600mb to 1.2G, does this actually add space for running apps or gives only more installation space?
Sent from my u8800 using XDA Premium App
Vk_ said:
Right. One more thing, though this is a bit beside the subject. The re-partitioning, when upgraded from 600mb to 1.2G, does this actually add space for running apps or gives only more installation space?
Sent from my u8800 using XDA Premium App
Click to expand...
Click to collapse
Yes it gives both actual space for installation. Running apps will always be loaded into ram and swap.
So RAM is its own thing and separate from (ROM?) the increasable space? But what is the actual gain IN increasing it? More apps in the phone? But I've read that the phone gets all cluttered and buggy, if its full of apps. Is this the gain in re-partitioning?
Sent from my u8800 using XDA Premium App
Vk_ said:
So RAM is its own thing and separate from (ROM?) the increasable space? But what is the actual gain IN increasing it? More apps in the phone? But I've read that the phone gets all cluttered and buggy, if its full of apps. Is this the gain in re-partitioning?
Sent from my u8800 using XDA Premium App
Click to expand...
Click to collapse
Where have you read that?
The thing is huawei included a external storage(build in SD card) which had the size of 2GB, and internal storage at 600MB, with geno's partition flash you just change the partitions, the 600MB becomes external storage, and the 2GB(1.2GB data) becomes internal storage. So we gain rather than lose storage. So I have used it for now quite and not experienced any problem.
Please link me up on where you found out this cluttered and buggy thing with this ok?
I think that I accidentally misled you on this. It was some SGS(maybe) thread that I read sometime ago. The talk was about phone being laggy and probable cause that it was full of apps. So I kinda gathered that if any android phone is stuffed full of applications, it gets slow. But I guess I am wrong?
Sent from my u8800 using XDA Premium App
Vk_ said:
I think that I accidentally misled you on this. It was some SGS(maybe) thread that I read sometime ago. The talk was about phone being laggy and probable cause that it was full of apps. So I kinda gathered that if any android phone is stuffed full of applications, it gets slow. But I guess I am wrong?
Sent from my u8800 using XDA Premium App
Click to expand...
Click to collapse
Aha, well if the phone gets sluggish is because swap and ram is being used and less free for other processes. You could make it similar to any OS. I have tried once with this phone filled it up had 6mb left wasn't sluggish at.
So if I have still 389mb phone memory left free, re-partitioning isn't really acute procedure for me?
Sent from my u8800 using XDA Premium App
Vk_ said:
So if I have still 389mb phone memory left free, re-partitioning isn't really acute procedure for me?
Sent from my u8800 using XDA Premium App
Click to expand...
Click to collapse
The partition thing will work independently, only thing it does is formatting the external storage(2GB) and then moves all your data on to the 2GB internal SD and that's it. You can do this if you feel like you need lots of space for apps ok?
Yes, I understand. And since I still have lots of free space left, I think I save this for later. Thanks for explaining this to me. Oh jeah, what custom ROM would you recommend? Preferably one that has all its bugs smoothed out?
Sent from my u8800 using XDA Premium App
This ROM seems to be stable and very fast.
http://forum.xda-developers.com/showthread.php?t=1059753
Vk_ said:
Yes, I understand. And since I still have lots of free space left, I think I save this for later. Thanks for explaining this to me. Oh jeah, what custom ROM would you recommend? Preferably one that has all its bugs smoothed out?
Sent from my u8800 using XDA Premium App
Click to expand...
Click to collapse
Uhm, I am really uncertain about this fact. It seems like phones from different regions have different problems with ROMs.
I would say like this, take a tour , visit different roms out and try out them for yourself and see which one suits your needs and such things.
What I use
http://android.modaco.com/content/h...rom-for-the-huawei-u8800-with-online-kitchen/
I am using this because I seem to have problems with other roms out nowdays. Might be only me
Other ones...
http://forum.xda-developers.com/showthread.php?t=1147103
http://forum.xda-developers.com/showthread.php?t=1059753
Try out and see for yourself, that's the best thing you can do !
Hope it helps !
Thanks for the help. Wanna Google+ invite?
Sent from my u8800 using XDA Premium App
Vk_ said:
Thanks for the help. Wanna Google+ invite?
Sent from my u8800 using XDA Premium App
Click to expand...
Click to collapse
Thanks, but no thanks
I am happy with forums and iirc.
The n00b question parade continues.
I applied new boot.img and new recovery.img and updated to B160 ROM (for now). So far so good. But its the Superuser that I can't figure out. I can't seem to make it do anything..
Sent from my u8800 using XDA Premium App
Vk_ said:
The n00b question parade continues.
I applied new boot.img and new recovery.img and updated to B160 ROM (for now). So far so good. But its the Superuser that I can't figure out. I can't seem to make it do anything..
Sent from my u8800 using XDA Premium App
Click to expand...
Click to collapse
Well, the superuser application is there for applications who require root access to make changes and such thing, so if you were to use SetCPU, noAds or Titanium Backup, they will require access from superuser(root). So don't worry, it works but you need something that demands root access to see anything happen !
And yet more questions. Is there a way to upgrade the touch screen? I mean to up the number of simultaneous touches from two to more?
Sent from my u8800 using XDA Premium App
Running Trigger Redux 13
I had 173 in total and after installing my apps (232) it comes down to 1.55 mb
I delete the folders but come back after rebooting.
I find it that I have to delete apps to keep the phone running without forceclosing.
It is weird because the TW roms never do that. Only AOSP roms
Don't know why.
I have 211 user apps and cm7 doesn't force close on me? Neither does miui. Why would you need more /datadata space?
Sent from my GT-I9000 using XDA App
Because as soon as I start using Dolphin browser it goes from 8mb to 80 kb and it force closes.
I have THD and big 10+ apps
Alanrocks15 said:
Because as soon as I start using Dolphin browser it goes from 8mb to 80 kb and it force closes.
I have THD and big 10+ apps
Click to expand...
Click to collapse
I've had similar issues as well....seems like facebook and dolphin browser use alot of /datadata..
Alanrocks15 said:
Because as soon as I start using Dolphin browser it goes from 8mb to 80 kb and it force closes.
I have THD and big 10+ apps
Click to expand...
Click to collapse
Folders will always re-appear unless you delete the actual app that its creating them or if is part of the OS you don't wanna be deleting them even if they are empty. If Im getting this right your talking about your internal (app) storage partition in your phone right (iow not the internal/external sd). There are only a few things you could do to get a little more storage space in there but some u gotta do it at ur own risk. 1-reboot to recovery and wipe catche & dalvik catche. 2-Remove bloatware or any other app u dont really use (u sure u wanna keep that fart app?) via Titanium Backup am make sure u wipe data b4 removing them (search & read what systems app ur safe to remove k)and then re-do step 1. 3-Using a file manager (like Astro or Root Explorer) go to data/data folder and delete any leftover folders from apps you uninstalled (VERY RISKY!!! You really gotta know what ur doing cuz the apps name and the com." ". " " folder name sometimes wont be the same so I DO NOT recommend it but its here as a fyi).
...and another note: not sure about u but when Dolphin Browser HD went 5.0 I had to let it go cuz it was slow and it FC on me a couple of times so I had to say bye to it and now I'm happy with Firefox.
Alanrocks15 said:
Because as soon as I start using Dolphin browser it goes from 8mb to 80 kb and it force closes.
I have THD and big 10+ apps
Click to expand...
Click to collapse
Folders will always re-appear unless you delete the actual app that its creating them or if is part of the OS you don't wanna be deleting them even if they are empty. If Im getting this right your talking about your internal (app) storage partition in your phone right (iow not the internal/external sd). There are only a few things you could do to get a little more storage space in there but some u gotta do it at ur own risk. 1-reboot to recovery and wipe catche & dalvik catche. 2-Remove bloatware or any other app u dont really use (u sure u wanna keep that fart app?) via Titanium Backup and make sure u wipe data b4 removing them (search & read what systems app ur safe to remove k)and then re-do step 1. 3-Using a file manager (like Astro or Root Explorer) go to data/data folder and delete any leftover folders from apps you uninstalled (VERY RISKY!!! You really gotta know what ur doing cuz the apps name and the com." ". " " folder name sometimes wont be the same so I DO NOT recommend it but its here as a fyi).
...and another note: not sure about u but when Dolphin Browser HD went 5.0 I had to let it go cuz it was slow and it FC on me a couple of times so I had to say bye to it and now I'm happy with Firefox.
Wait so when I delete an app the /datadata folder still has the app folder.?
So for every app I uninstall I have to go into the/datadata older and delete that file.
Alanrocks15 said:
Wait so when I delete an app the /datadata folder still has the app folder.?
So for every app I uninstall I have to go into the/datadata older and delete that file.
Click to expand...
Click to collapse
I've noticed that some files will stay there after you uninstall SOME apps (i.e. angry birds), not all of them.
I'm not saying to do that, all what I gave you was some FYI , THAT's IT!
The /datadata issue is a huge PITA! I dont understand why it only affects some people and others dont have the issue. I have to monitor my phones /datadata folder because once it gets around 85% usage, my phone gets wonky. I NEVER had to worry about this pre-GB ROM.
Oh yes, very annoying. Even when moving apptosd it stills gives force closes. I gave up. My solution, have less Apps.
Sent from my SGH-T959 using Tapatalk
androidmonkey said:
The /datadata issue is a huge PITA! I dont understand why it only affects some people and others dont have the issue. I have to monitor my phones /datadata folder because once it gets around 85% usage, my phone gets wonky. I NEVER had to worry about this pre-GB ROM.
Click to expand...
Click to collapse
I already investigated this months back. They put datadata in its own partition to fix performance issues. The tradeoff is the datadata partition is smaller than the default internal app partition.
Sent from my GT-I9100 using Tapatalk
compuguy1088 said:
I already investigated this months back. They put datadata in its own partition to fix performance issues. The tradeoff is the datadata partition is smaller than the default internal app partition.
Sent from my GT-I9100 using Tapatalk
Click to expand...
Click to collapse
Would the galaxy s 2 phones have the same issue?
Sent from my GT-I9000 using XDA Premium App
compuguy1088 said:
I already investigated this months back. They put datadata in its own partition to fix performance issues. The tradeoff is the datadata partition is smaller than the default internal app partition.
Sent from my GT-I9100 using Tapatalk
Click to expand...
Click to collapse
So what's the ultimate fix for /datadata issues?
Just noticed another set of icons in the top of the screen...after a reboot they went away
G900f-non rooted
ANG2 firmware
Sent from my SM-G900F using XDA Premium 4 mobile app
How many times have you observed this?
There is little basis to believe it's a bug if it a one time glitch.
.
3 times its happend now...the icons were larger...then seemed to downsize to what u see....
Sent from my SM-G900F using XDA Premium 4 mobile app
adie1234 said:
3 times its happend now...the icons were larger...then seemed to downsize to what u see....
Click to expand...
Click to collapse
How often is it happening?
What were the most recent two apps installed?
Reboot to recovery mode and wipe the cache partition.
If the issue still persists, do a logcat
Install a terminal emulator app and then type these commands to produce a system log file for us to troubleshoot with.
Code:
$ su
# logcat > /sdcard/logcat.txt
.