Edited by gravityz3r0, 29 June 2010 - 09:26 PM.
Got the 'stalling' problem? Rooted? Try this...
#41
Posted 29 June 2010 - 09:26 PM
#42
Posted 29 June 2010 - 09:41 PM
Arnon, on Jun 29 2010, 21:42, said:
gravityz3r0, on Jun 29 2010, 22:26, said:
The first quote was posted 6 posts ago .... You seriously missed it ? Wow ...
#43
Posted 29 June 2010 - 09:51 PM
Ash_786, on Jun 29 2010, 22:23, said:
To undo I believe these are the steps (Based on my linux knowledge), if you followed the initial steps 100% correctly/completely:
Quote
rm /data/data (This will delete your symlink)
mv /data/data.bak /data/data (Restore your backup)
reboot
Edited by megakid, 29 June 2010 - 09:51 PM.
#44
Posted 29 June 2010 - 09:51 PM
Ash_786, on Jun 29 2010, 21:41, said:
I tried before i posted, but the list came out really long, but i did not see anything that says data/data or dbdata
edit : or maybe i cant see it because it's on top of the list and i do not know how to scroll it back up.
edit 2 : ok got it, he did not mention du -h data/data. doh
Edited by gravityz3r0, 29 June 2010 - 09:57 PM.
#45
Posted 30 June 2010 - 12:15 AM
#46
Posted 30 June 2010 - 12:46 AM
Thanks for help
P[/quote]
Edited by flash_235, 30 June 2010 - 12:46 AM.
#47
Posted 30 June 2010 - 03:19 AM
#48
Posted 30 June 2010 - 03:22 AM
#49
Posted 30 June 2010 - 03:29 AM
I wonder whether there is any other ways to mv and ln some parts in the data folder, not all things in data folder.
Thanks.
#50
Posted 30 June 2010 - 03:41 AM
This is my first smartphone and I managed to follow the instructions and it worked
#51
Posted 30 June 2010 - 05:22 AM
Paul, on Jun 29 2010, 19:03, said:
P
ok I saw that. but it's for db. maybe we can try with those core apps with huge cache/file in /data/data first, and i noticed its namely the com.android.providers/emails, imes and maybe the launcher.
now I am wondering, Galaxy S has 512MB RAM, 2G ROM and 16G internal storage.
I see that the 16G internal storage is mounted on /sdcard
and 2G ROM apparently has been partitition into multiple blocks and mounted as folders such as /system and /data ?
If so, what's rootfs (and the fs that mounts dbdata?) part of the 512MB RAM?
Edited by zenkinz, 30 June 2010 - 05:52 AM.
#52
Posted 30 June 2010 - 05:47 AM
adb shell
su
cd /data/data
busybox du -h|busybox grep M
games like gameloft games do take a few Mbs and google earth took about 20Mb. Unless there are new workarounds, the easiest way right now is to uninstall those apps that u can do without that takes up megs of space in /data/data. Alternative is try to identify apps that cause the stall and create symbolic links for those apps' data to /dbdata
#53
Posted 30 June 2010 - 05:57 AM
I've already done it, the phone is super fast now. But i also want to know, can the new apps install to /data/data again? instead of /dbdata/data
like to fuction App2SD
Edited by KUNG_C, 30 June 2010 - 06:10 AM.
#54
Posted 30 June 2010 - 08:46 AM
Toreak, on Jun 30 2010, 07:47, said:
adb shell
su
cd /data/data
busybox du -h|busybox grep M
games like gameloft games do take a few Mbs and google earth took about 20Mb. Unless there are new workarounds, the easiest way right now is to uninstall those apps that u can do without that takes up megs of space in /data/data. Alternative is try to identify apps that cause the stall and create symbolic links for those apps' data to /dbdata
Actually there is workaround - I just did it
I just linked everything except biggest folders in /data/data to /dbdata/data, and biggest folders linked separately each one so they would be in /data/data.bak/.
full script is here:
su cp -rp /data/data /data/data_to_copy/ cd /data/data_to_copy rm -r com.navngo.igo.javaclient rm -r com.google.earth rm -r com.navigon.navigator rm -r com.gameloft.android.GAND.GloftDUNQ.DungeonHunter rm -r com.google.android.youtube rm -r com.gameloft.android.GAND.GloftHAWX.Hawx rm -r com.gameloft.android.GAND.GloftNOHP rm -r com.skyfire.browser rm -r com.gameloft.android.GAND.GloftMCHP rm -r com.sygic.drive rm -r com.gameloft.android.GAND.GloftAsphalt5.asphalt5 rm -r com.polarbit.rthunder2 cp -rp /data/data_to_copy /dbdata/data/ rm -r /data/data_to_copy mv /data/data /data/data.bak ln -s /dbdata/data /data/data ln -s /data/data.bak/com.navngo.igo.javaclient /data/data/com.navngo.igo.javaclient ln -s /data/data.bak/com.google.earth /data/data/com.google.earth ln -s /data/data.bak/com.navigon.navigator /data/data/com.navigon.navigator ln -s /data/data.bak/com.gameloft.android.GAND.GloftDUNQ.DungeonHunter /data/data/com.gameloft.android.GAND.GloftDUNQ.DungeonHunter ln -s /data/data.bak/com.google.android.youtube /data/data/com.google.android.youtube ln -s /data/data.bak/com.gameloft.android.GAND.GloftHAWX.Hawx /data/data/com.gameloft.android.GAND.GloftHAWX.Hawx ln -s /data/data.bak/com.gameloft.android.GAND.GloftNOHP /data/data/com.gameloft.android.GAND.GloftNOHP ln -s /data/data.bak/com.skyfire.browser /data/data/com.skyfire.browser ln -s /data/data.bak/com.gameloft.android.GAND.GloftMCHP /data/data/com.gameloft.android.GAND.GloftMCHP ln -s /data/data.bak/com.sygic.drive /data/data/com.sygic.drive ln -s /data/data.bak/com.gameloft.android.GAND.GloftAsphalt5.asphalt5 /data/data/com.gameloft.android.GAND.GloftAsphalt5.asphalt5 ln -s /data/data.bak/com.polarbit.rthunder2 /data/data/com.polarbit.rthunder2
reboot phone
Edited by vitalijb, 02 July 2010 - 04:40 PM.
#55
Posted 30 June 2010 - 08:59 AM
P
You can follow me on Twitter - http://twitter.com/paulobrien / Follow MoDaCo on Twitter - http://twitter.com/modaco
Want to donate? MoDaCo is raising money for the Multiple Sclerosis society.
#56
Posted 30 June 2010 - 09:07 AM
flash_235, on Jun 30 2010, 01:46, said:
Thanks for help
P
Follow method 1 on here:
http://forum.samdroi...06-2010-a-1355/
Then su will work.
#57
Posted 30 June 2010 - 11:10 AM
#58
Posted 30 June 2010 - 11:21 AM
#59
Posted 30 June 2010 - 11:24 AM
Thank you Paul
#60
Posted 30 June 2010 - 11:44 AM
May put something useful here soon, maybe...
1 user(s) are reading this topic
0 members, 1 guests, 0 anonymous users







Sign In
Create Account

Back to top









