Increasing SD card speed. - GT540 Optimus Android Development

Looks like you can increase the speed of your SD card by modifying the cache size.
Here's a guide,
http://forum.xda-developers.com/showthread.php?t=1010807
And, here's an app to do it.
https://market.android.com/details?id=com.sdincrease.it
Well, I have only one GT540. So, am not ready to try it yet. So, get your hands on it guys.

.
nibras_reeza said:
Looks like you can increase the speed of your SD card by modifying the cache size.
Here's a guide,
http://forum.xda-developers.com/showthread.php?t=1010807
And, here's an app to do it.
https://market.android.com/details?id=com.sdincrease.it
Well, I have only one GT540. So, am not ready to try it yet. So, get your hands on it guys.
Click to expand...
Click to collapse
It sounds good but I don't think I will need it.

iv tried it and it seems to work i am getting faster access to avi files etc

Thanks
Hope someone finds it useful but I wonder if this will make the SD faster.
[EDIT]
Hope someone finds it useful but I wonder if this will make the SD wear out faster.

nibras_reeza said:
Thanks
Hope someone finds it useful but I wonder if this will make the SD faster.
Click to expand...
Click to collapse
I think it won't make the sd card faster.

I installed the sd tool and sd increase apps. Changing to 2048k did speed up reads but the change is not persistent i.e. you have to re-apply with the app after every boot...
Might apply the update zip though because it is noticeably quicker.

http://www.ipmart-forum.com/showthread.php?660647-SD-Increase-1.3

lavero.burgos said:
http://www.ipmart-forum.com/showthread.php?660647-SD-Increase-1.3
Click to expand...
Click to collapse
Thanks. Must have updated the app cos I'd swear that option wasn't there before
Sent from my GT540 using XDA Premium App

Related

App to test microsd card speed???

Is there any app available that can do this???
Nope.
But the request does come up enough that maybe I should write up something simple...
Kcarpenter said:
Nope.
But the request does come up enough that maybe I should write up something simple...
Click to expand...
Click to collapse
That would be awesome. A lot of times theres no specs on the speed of cards out there and your not really sure of what you are buying. It would be awesome.
excellent idea for an app. there are cards out there that do not list there class and cards that are listed as class 2 yet reach class 6 speeds.
cheers,
ryan
If you guys would give me a good algorithim to test read/write speeds I can work on it later tonight. It will probably take a few days a best.
But My idea is write a 2 meg file to the SD card, time it. Read the same file from the card, time it. Do a little math...present some numbers...
Now there are a lot of issues that could come into play with that method. Maybe repeat it 3 or 4 times just to see an average, but still its not the best that it could be.
What about just getting a microsd adapter or even mounting it to the computer. And then run a program that tests read/write speeds and use it on the card. like h2testw or something :/
kyouko said:
What about just getting a microsd adapter or even mounting it to the computer. And then run a program that tests read/write speeds and use it on the card. like h2testw or something :/
Click to expand...
Click to collapse
1. On the phone is just cooler
2. On another thread about this topic there was debate about how accurate it would be to use an adapter or mounting as a drive. Adding cable seems to me like it could increase latency and you are no longer using the phones OS to test its internal stuff. ( i know its USB its faster than the card anyways, but see #1)
Kcarpenter said:
If you guys would give me a good algorithim to test read/write speeds I can work on it later tonight. It will probably take a few days a best.
But My idea is write a 2 meg file to the SD card, time it. Read the same file from the card, time it. Do a little math...present some numbers...
Now there are a lot of issues that could come into play with that method. Maybe repeat it 3 or 4 times just to see an average, but still its not the best that it could be.
Click to expand...
Click to collapse
You can start from there then trial and error. I was thinking you can take a look at any of the web SpeedTests in the market and learn something from there.
If you are on linux you can mount the phone and run
Code:
hdparm -tT /dev/sdd
where sdd is the phones drive(could be different on your machine)
That will give you a read speed but would would be limited by your USB read speed.
Hdparm is not built into android so you can't run it from the phone. There is one command that is built in that can measure speeds... However it is VERY VERY VERY dangerous so I hesitate to post it here but... dd
For the love of God do not mess with dd unless you read up on it and fully understand it. You could very easily measure write speed as well as read with dd but you would need an empty card because you would have to just blindly write to the blocks on the card. Doing which will at the bare minimum if you know what you are doing overwrite stuff on the card. Worst case is you mess up your partition table and have to re-partition. So I will only point you in the direction of dd and not post any code on how to use it for fear of some idiot entering the code and wiping their phone(although they would have to know how to use adb shell so they wouldn't be complete idiots)
This would be a useful app. I have a class 6 PNY SD and want to know how fast it really is.
Wow, what an AMAZING idea for an app. I would be more than happy to help and test!!!
Sooo
I am working on this guys.
I have gotten the program writing a file out to the SDcard. It just a randomly filled Byte Array being parsed to a file on the SDcard a few times, then reading it back off (Haven't got the reading part yet). I am running into some FC issues and also getting the timer to work is being a PITA. Android doesn't like my threads for some reason.
If I have time this week maybe I can get it done - or at least working, but I have some stuff going on that may slow down progress.
EDIT:
Also if anyone that is not quite so Artisticly Challenged as I am wants to get me some drawables. I can use an Icon and a 320x480 image back ground (Let's try to keep it simple , I have seen some of your boot screens. lol)
Bump for moral support!
couldn't you just pop it into an adapter, and use HD Tune on your pc? http://www.hdtune.com/
I think the concept of the app request is so people don't have to turn off theory beloved heroes and pull battery just to get to the SD card, babe.
couldn't you just pop it into an adapter, and use HD Tune on your pc? http://www.hdtune.com/
Click to expand...
Click to collapse
-------------------------------------
Sent via the XDA Tapatalk App
Kcarpenter, if you don't mind me asking what the status on this?
-------------------------------------
Sent via the XDA Tapatalk App
kashb91 said:
Kcarpenter, if you don't mind me asking what the status on this?
-------------------------------------
Sent via the XDA Tapatalk App
Click to expand...
Click to collapse
Well, it reads and writes a 6 meg file while spinning a wait cursor LOL.
Been working on final projects the past few weeks.
Might have something out 2 week of june.
As it stands now:
1)Need to setup a time mechanism - probably most acurate to grab a time stamp before the start and after the finish. Threads tend to get time messed up.
2)After the file is written and the time is figured out. Need to display the read/write results.
3)Then need to cleanup the file and ram after everything is done.
Also, I have seen the file only become half of the size it should be (3 mb)....which I think has something to do with UTF (Chars taking up 2 bytes)....but I am not sure yet.
And on top of that...who the hell knows if its accurate LOL.
But it's been interesting and fun.
haha, well thats good. keeps you interested then. i honestly dont kknow anything about programming and what not, so i cant help you there. buuuutttt when you finish and need testers i can help. well try anyways
kashb91 said:
haha, well thats good. keeps you interested then. i honestly dont kknow anything about programming and what not, so i cant help you there. buuuutttt when you finish and need testers i can help. well try anyways
Click to expand...
Click to collapse
I am really interested to see if it's even remotly accurate.
Seems like creating a 6 meg file and writing it out from memory to the card would surely test well... But there are a crap ton of things that could come into play and effect it.
I guess we'll only know if we try.
unless my phone explodes, i see nothing wrong with trying it out.

Question Open Zio Revamped

I tried to post this in the thread for the Open Zio Revamped but it wont let me since I dont have enough posts yet. lol Anyways on to the questions.
First off when I install my apps and try to move them to the SD card they disapear from the app list after I reboot. How can I stop this from happening?
2nd When I get a call from sombody sometimes it has the wrong picture for a contact. I had this problem with Open zio as well though.
Thank You
Well i have been doing some research and this happens quite often apparently. What causes it is the loader boots up before the SD card is scanned. So when I force close the ICS loader and open my app draw they appear. I cant seem to find a way to change when the loader will load up though... I would like to make it load a few seconds later to give the sd card a chance to scan first. Does anybody know of an app or anything that can do this? I have looked and cant seem to find one.
strikrv1 said:
Well i have been doing some research and this happens quite often apparently. What causes it is the loader boots up before the SD card is scanned. So when I force close the ICS loader and open my app draw they appear. I cant seem to find a way to change when the loader will load up though... I would like to make it load a few seconds later to give the sd card a chance to scan first. Does anybody know of an app or anything that can do this? I have looked and cant seem to find one.
Click to expand...
Click to collapse
I can confirm the wrong pictures on phone calls from time to time, but the sd card problem i havent personally experienced...
Sent from my LG-P509 using xda premium
I have found a work around other than force closing ICS. I downloaded an app called FMR Memory Cleaner that cleans the cache of a lot of the system apps including the ICS Loader and so when that is done ICS then pics up the data from the SD card. I think it could be possibly the SD card is slow to read for one reason or another because I did notice when I had Open Zio before it would often either take a while to load all of the apps though they did load or the Loader would crash and when it reloaded then the apps that were on SD would show. Although this has happened with both of my SD cards it was more noticeable on my 8 gig one. If anybody else is getting this issue I hope this helps until I or somebody else finds a more permanent fix for this what seems so far to be a one of a kind issue lol.
Ohh and when I said it happens quite often I meant throughout all androids not just zio or with any particular rom. Just to clear that up.
I haven't tried open zio yet. I'm contemplating it though cause I have a larger problem and like you I can't post where I need to yet. I need to enable usb debugging but can't access settings.... or much else.
You mean its not available in the settings any longer? Or the settings crash whenever you try to get in them. I probably cant help but if I get time ill try to look up your issue and see if I find anything. What did you do before that happened? Have you tried resting the phone back to the base setup?
My phone is 2.2.1 from Cricket and I also have one contact that shows the wrong picture too. Could it be a sync issue or a google server issue?
jerry7389 said:
I can confirm the wrong pictures on phone calls from time to time, but the sd card problem i havent personally experienced...
Sent from my LG-P509 using xda premium
Click to expand...
Click to collapse
chalk another one up as I am also having the sd card issue. if i FC the ICS launcher it picks them up but only for a short time. as soon as the phone sleeps it reverts back. im looking for a read booster for the sd card but i havent found one that seems appropriate yet. ill post back here when i do.
Fauxfire27 said:
chalk another one up as I am also having the sd card issue. if i FC the ICS launcher it picks them up but only for a short time. as soon as the phone sleeps it reverts back. im looking for a read booster for the sd card but i havent found one that seems appropriate yet. ill post back here when i do.
Click to expand...
Click to collapse
What kind of SD card are you using?
Sent from my LG-P509 using xda premium
jerry7389 said:
What kind of SD card are you using?
Sent from my LG-P509 using xda premium
Click to expand...
Click to collapse
I am using a 1GB Sandisk Micro SD Card. ( yes i know its small but i haven't gotten the cash up yet to get the 8GB NFC enabled SD Card that i want )
Fauxfire27 said:
I am using a 1GB Sandisk Micro SD Card. ( yes i know its small but i haven't gotten the cash up yet to get the 8GB NFC enabled SD Card that i want )
Click to expand...
Click to collapse
I've personally had alot of problems with SD cards that come with the phones that I've had, I don't know what it is with them but when I change to a new SD card my problems stop( in particular the T-Mobile optimus t was the worst) . Have you tried reformatting the SD card? Maybe that will help.
Sent from my LG-P509 using xda premium
yeah reformatted and re installed all my apps ( i did a full copy of my sdcard just in case i had something i needed to save, but didnt copy it back to the sdcard)
Still having same problem
Its a known bug in the 2.2.1 build, it's nice to see that someone is trying to keep the Zio community going... Mine has a bad battery and I wanted to get a better phone anyways since there is no chance the Zio will ever see cyanogenmod or even an AOSP gingerbread build.
If anyone can prove me wrong I'd donate for the effort even though I don't use it anymore...
Sent from The iPhone killer, Epic 4G Touch using XDA premium.
Mattix724 said:
it's nice to see that someone is trying to keep the Zio community going... Mine has a bad battery and I wanted to get a better phone anyways since there is no chance the Zio will ever see cyanogenmod or even an AOSP gingerbread build.
Click to expand...
Click to collapse
Same here Mattix I gave up on the Zio a while ago just happened to come back cause a friend asked me to see if there was ever a port for CWM for Sprint users. I got a HTC Incredible and haven't looked back.

16gb being "seen" by MIUI as FIVE gb - HELP !!!!

I sort of went down the rooting route due to everyone saying it was a MUST - even though the LG ran well, everything worked well and battery life was OK if not groundbreaking. So I was kind of half-hearted to start with.
Well, after 2 days of having to keep re-romming after this didn't work and that didn't work (Bluetooth in particular) I just can't get MIUI to see the 16gb card as the 16gb it is, it shows as 5. Now I had read this before. But that the LG software had this problem not the rooted stock. I even tried to go back to LG's original - It didn't work. The download on here (UK version of original Optimus 2x) doesn't install. Says "aborted" - this after horrendously slow download speeds. Keeps saying it's part of a multi-pack on my PC. Put them both on, but....
Anyways. The 16gb card. Ive tried another 16gb card with the same end result.
Can anyone PLEASE help me. Ive got no help on the MIUI site, and just lost. I tried to install Navfree and another navigation prog (Navfree UK maps don't download properly - keeps demanding more and more downloads. Ridiculously so - had to be uninstalled) tried another one, and it said it needed a 750mb download and there wasn't enough room - there was a MOUNTAIN of room. But its showing as 5. (Even there, theres not close to 5gb used)
Can anyone PLEASE help ?
All Ive got so far asking on half a dozen sites, is silence so far in 4 days
I doubt what is 'seen' as 5 gb by your phone is your SD card. I haven't ever heard of such problems. Big chances are, which often happens, that you're mistaking the internal memory as the sd card.
Stock MIUI mounts the internal and external cards the same way as stock LG ROM, but there could be a chance you used a swap mount mod without knowing.
I actually wanted to laugh, here i upload a file just for you
Here is the link for the sd mod.
http://www.box.com/s/7pl04u9onk76d80yb5tl
Credits goes too this thread : http://forum.xda-developers.com/showthread.php?t=1263311
Lol nice heading of miui. 16/miui = 5 kidding, never mind
Sent from my LG-P990 using Tapatalk
Excellent !!!!!
crankyboy said:
I actually wanted to laugh, here i upload a file just for you
Here is the link for the sd mod.
http://www.box.com/s/7pl04u9onk76d80yb5tl
Credits goes too this thread : http://forum.xda-developers.com/showthread.php?t=1263311
Click to expand...
Click to collapse
You sir, are a gentleman and a scholar. It's solved my irritating problem and thats an understatement - now I have a proper 16gb sd micro in and all the room that invokes !
spica1234 said:
Lol nice heading of miui. 16/miui = 5 kidding, never mind
Click to expand...
Click to collapse
And where was that ? Not in the heading. Check again.
Click the _______ button. (Fill in the blanks) Hint*"when somebody did a favour you should ?":
Sent from my Optimus 2X using Tapatalk
You might have fake memory, memory thats been hacked to look like it has more than it does....the chinese do stupid s**t like that. Sometimes when the card is formatted the true memory capacity is revealed.
He is using MIUI ROM
Miui only uses the internel sd card ~~
Sent from my Optimus 2X using Tapatalk
crankyboy said:
Click the _______ button. (Fill in the blanks) Hint*"when somebody did a favour you should ?":
Sent from my Optimus 2X using Tapatalk
Click to expand...
Click to collapse
Er.....I checked, and yes, a big thanks given to you for your help. Quite profuse, actually. Ive just noticed the "thanks" button - but you could have done it with a LOT more grace.
Clearly, being thanked profusely didn't do it for you ?
Hard man to please.
I'll click the button then that I missed until er.....reminded of it a little too grumpily for me - hopefully that'll tick the box for you.
Still, while being a little miffed at the attitude, Im still very grateful for your help, for all that.

RAM managment

guys i know you all heard for this app (Ram manager pro)
https://play.google.com/store/apps/details?id=com.smartprojects.RAMOptimization&hl=en
but, i bet lot of you didnt notice a biiiiiig update...now you can swap your RAM on your internal, the fastest partition in our device (not even close to sd card class100)
but, im not sure about it, and i ask for help from developers or android wizz that know this method...
i noticed that this thing works, but, after you swap, you dont have space left...so, iv got partitioned my sd card, only to 256mb, just to check...and it really works again!
Again, but, you need to create swap file right after flashing fresh rom, so it (swap file) occupy internal memory at once! Cause, if you instal some apps, it will use sd ext, and probably go to sd card, wich doesnt make any difference in performance...
Once again, im asking for opinion of expert, to confirm this...
Im using latest jb4.2.2, and best way to check this is to play some game and to listen a music at same time : DIDNT GET FC OR ANY LAG!
tnx in advance
NOTE: don't create swap bigger than 128mb, thats our max internal
Does it really works? Because i used to swap too but it didnt make any difference in performance. The only thing i notice is my phone got hotter alot.....
Sent from my GT-S5570
Nixoman said:
guys i know you all heard for this app (Ram manager pro)
https://play.google.com/store/apps/details?id=com.smartprojects.RAMOptimization&hl=en
but, i bet lot of you didnt notice a biiiiiig update...now you can swap your RAM on your internal, the fastest partition in our device (not even close to sd card class100)
but, im not sure about it, and i ask for help from developers or android wizz that know this method...
i noticed that this thing works, but, after you swap, you dont have space left...so, iv got partitioned my sd card, only to 256mb, just to check...and it really works again!
Again, but, you need to create swap file right after flashing fresh rom, so it (swap file) occupy internal memory at once! Cause, if you instal some apps, it will use sd ext, and probably go to sd card, wich doesnt make any difference in performance...
Once again, im asking for opinion of expert, to confirm this...
Im using latest jb4.2.2, and best way to check this is to play some game and to listen a music at same time : DIDNT GET FC OR ANY LAG!
tnx in advance
NOTE: don't create swap bigger than 128mb, thats our max internal
Click to expand...
Click to collapse
Tried this last year .....the script was made by custdroid.....
Unfortunately the constant read and write on ROM is not so good for the hardware.. ...so I deprecated the project for mini also with such low internal memory I could create only 32mb swap on internal and the phone soon started yo take its toll ...you may try this but I am sharing my experience cause it may feel smooth for sometime but it reduces the life of your mini considerably cause ROM is supposed to non-volatile unlike RAM which is volatile...
Sent from my GT-S5570 using Tapatalk 2
but isnt everytime you start app you writing and reading with data and cache? on internal?
Nixoman said:
but isnt everytime you start app you writing and reading with data and cache? on internal?
Click to expand...
Click to collapse
But is that really as frequent and as comprehensive as RAM?
Sent from my GT-S5570 using Tapatalk 2
hsay said:
But is that really as frequent and as comprehensive as RAM?
Sent from my GT-S5570 using Tapatalk 2
Click to expand...
Click to collapse
i don't know, only way is to test it by myself, ill report behavior of my mini in one week, iv got nothing to lose, already out of warranty, almost 3 years old, got new nokia n9, i gonna take the bullet for that
Nixoman said:
i don't know, only way is to test it by myself, ill report behavior of my mini in one week, iv got nothing to lose, already out of warranty, almost 3 years old, got new nokia n9, i gonna take the bullet for that
Click to expand...
Click to collapse
That was a rhetoric question ....sarcasm if you may ...anyway you may try it....
Sent from my GT-S5570 using Tapatalk 2
hsay said:
That was a rhetoric question ....sarcasm if you may ...anyway you may try it....
Sent from my GT-S5570 using Tapatalk 2
Click to expand...
Click to collapse
why to be rhetoric when can be (or not) usefull if no harm causing to device? :fingers-crossed:

[Q] Is there any way to transfer apps to the SD card?

I wonder if anyone knows if there is some way to put apps en SD card. I've installed App Manager and it's say that is not possible I have spent several hours searching the internet and have not found any information about it.
Thanks for your help
Noiseblack said:
I wonder if anyone knows if there is some way to put apps en SD card. I've installed App Manager and it's say that is not possible I have spent several hours searching the internet and have not found any information about it.
Thanks for your help
Click to expand...
Click to collapse
Theres a guy who made a script for just this purpose and he did it on the Galaxy S3, you could ask in there, it literally swapped the SD for the internal SD. Making my S3 a 64GB version usable for apps and the extra 16GB for whatever i wanted, i personally didn't need it.
I've Used Directory Bind... Though not all apps can be transferred, (mostly huge games can be transferred)
http://forum.xda-developers.com/showthread.php?t=1410262
jpx3m said:
I've Used Directory Bind... Though not all apps can be transferred, (mostly huge games can be transferred)
http://forum.xda-developers.com/showthread.php?t=1410262
Click to expand...
Click to collapse
The one i'm referring to swaps internal for external completely m8.
dladz said:
The one i'm referring to swaps internal for external completely m8.
Click to expand...
Click to collapse
sorry... didn't mean to quote...
was answering the threadstarter.. :silly:

Categories

Resources