The Following User Says Thank You to ArnimS For This Useful Post: | ||
|
2007-11-14
, 09:30
|
Posts: 37 |
Thanked: 29 times |
Joined on Nov 2007
|
#2
|
|
2007-11-14
, 16:01
|
Posts: 93 |
Thanked: 7 times |
Joined on Sep 2007
|
#3
|
|
2007-11-14
, 16:33
|
|
Posts: 739 |
Thanked: 242 times |
Joined on Sep 2007
@ Montreal
|
#4
|
|
2007-11-14
, 23:05
|
|
Posts: 149 |
Thanked: 9 times |
Joined on Jan 2007
|
#5
|
|
2007-11-20
, 21:21
|
|
Posts: 1,107 |
Thanked: 720 times |
Joined on Mar 2007
@ Germany
|
#6
|
|
2007-11-20
, 22:10
|
|
Posts: 1,878 |
Thanked: 646 times |
Joined on Sep 2007
@ San Jose, CA
|
#7
|
|
2007-11-28
, 17:59
|
Posts: 246 |
Thanked: 6 times |
Joined on Jul 2007
|
#8
|
|
2007-11-28
, 18:32
|
Posts: 477 |
Thanked: 118 times |
Joined on Dec 2005
@ Munich, Germany
|
#9
|
|
2007-11-28
, 19:46
|
|
Posts: 3,524 |
Thanked: 2,958 times |
Joined on Oct 2007
@ Delta Quadrant
|
#10
|
OK, i'm seeing people buying N810s now and NOBODY has posted info on what micro/miniSD cards they are using on them.
N810 owners: Please let us know what SD cards you are using and run the benchmarks on them!
Write test:
sync; time sh -c "dd if=/dev/zero of=/media/mmc1/testfile bs=1M count=100;sync"
Read test:
time dd if=/media/mmc1/testfile of=/dev/null bs=1M
i'd like to start a thread for links to info and performance on minisd / microsd cards for the N810. Availability is rather scant for SDHC minisd in sleepy old germany, but there are some 4GB kingston 4 and 6M minisd cards available for just under 40 euro. I also see Sandisk microsd advertised to 8GB, but they never seem to include microsd-minisd adapters - are these standardized and purchaseable seperately?
Some speed comparisons:
http://www.hjreggel.net/cardspeed/sp....html#cdet-ki4
http://www.valuemedia.co.uk/minisd_speed_tests.htm
http://www.valuemedia.co.uk/micro_sd...peed_tests.htm
Since card performance seems to be dependent to the controller, N810 owners might benefit from posting data on read/write speeds for their cards here. To measure this, we could use something like:
Write:
sync; time sh -c "dd if=/dev/zero of=/media/mmc1/testfile bs=1M count=100;sync"
Read:
time dd if=/media/mmc1/testfile of=/dev/null bs=1M
edit: added kirby's suggested sync command - this should remove effects of memory write-cache
Speeds reported ranged from 2.5-5.5 MB/s write and 9-12 MB/s read.
Cheers,
(edit2 770 with 2006 stock kernel writing to Kingston 2GB rsmmc gives.... ..... ..... ..... 0.26 MB/s)
edit3: added jibane's cache flush command, echo 1 > /proc/sys/vm/drop_caches and put it all into the attached shellscript. You can download the script, rename speedtest.sh.txt to speedtest.sh and chmod u+x to make it executable. Currently it writes to mmc2 (internal) so edit the file and change the 3 occurrences of mmc2 to mmc1 to test a SD card.
edit4: add echo performance > /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor to the command
thanks smd!
Last edited by ArnimS; 2011-01-08 at 15:49. Reason: added cache flush and attachment