![]() |
2009-10-24
, 21:01
|
Posts: 3,319 |
Thanked: 5,610 times |
Joined on Aug 2008
@ Finland
|
#101
|
The Following 4 Users Say Thank You to attila77 For This Useful Post: | ||
![]() |
2009-10-24
, 21:59
|
|
Posts: 70 |
Thanked: 11 times |
Joined on Oct 2009
|
#102
|
![]() |
2009-10-24
, 23:11
|
|
Posts: 1,055 |
Thanked: 4,107 times |
Joined on Oct 2009
@ Norway
|
#103
|
This is my greatest concern about the N900. I have a feeling it will work fine the first 2 weeks and then little by little it will slow down just like symbian...
The Following 4 Users Say Thank You to w00t For This Useful Post: | ||
![]() |
2009-10-24
, 23:24
|
Posts: 1,224 |
Thanked: 1,763 times |
Joined on Jul 2007
|
#104
|
I actually changed my post and got rid of the "spin" and everything else, since spin was a poor word choice. Adding 256mb more flash would have added $50 to $75 more dollars to the device. I think that common yield for flash is 256mb, so that is what EVERYONE buys- Nokia, HTC, Motorolla, etc. for phone devices.
The Following User Says Thank You to Matan For This Useful Post: | ||
![]() |
2009-10-25
, 06:57
|
|
Posts: 3,105 |
Thanked: 11,088 times |
Joined on Jul 2007
@ Mountain View (CA, USA)
|
#105
|
A list of the packages (with versions) would be helpful to track down the culprit(s), fill bug reports, etc.
The Following User Says Thank You to qgil For This Useful Post: | ||
![]() |
2009-10-25
, 08:12
|
Posts: 279 |
Thanked: 293 times |
Joined on Oct 2009
@ Italy
|
#106
|
Indeed. Has anybody published a list of installed applications when hitting the rootfs limit? It feels like we have shared 101 discussion posts and yet nobody has been able to point to concrete examples af apps non optified that are causing trouble to testers.
fwiw yesterday I started going through http://maemo.org/packages/repository...xtras-testing/ and filing blockers to apps installing more than 500kb without optification, according to http://wiki.maemo.org/Extras-testing...root_partition
You are encouraged to help. I believe there is even a way to check this without a device, checking the source code? Instructions welcome if anybody knows how to.
![]() |
2009-10-25
, 09:11
|
Posts: 388 |
Thanked: 1,340 times |
Joined on Nov 2007
@ Finland
|
#107
|
fwiw yesterday I started going through http://maemo.org/packages/repository...xtras-testing/ and filing blockers to apps installing more than 500kb without optification, according to http://wiki.maemo.org/Extras-testing...root_partition
You are encouraged to help. I believe there is even a way to check this without a device, checking the source code? Instructions welcome if anybody knows how to.
![]() |
2009-10-25
, 10:02
|
Posts: 7 |
Thanked: 34 times |
Joined on Oct 2009
@ London, UK
|
#109
|
I posted a simple script to check (on-device) an installed package's rootfs usage here, feel free to add any other methods that come to mind.
![]() |
2009-10-25
, 12:24
|
|
Posts: 445 |
Thanked: 572 times |
Joined on Oct 2009
@ Oxford
|
#110
|
#!/bin/bash deb=$1 OIFS=$IFS IFS=$'\n' opt_total=0 home_total=0 other_total=0 for line in $(ar p ${deb} data.tar.gz | tar -tzvf -) ; do { IFS=$OIFS array=(${line}) case $(echo ${array[5]} | cut -b 1-5) in ./usr ) usr_total=$(( ${usr_total} + ${array[2]})) ;; ./opt ) opt_total=$(( ${opt_total} + ${array[2]})) ;; * ) other_total=$(( ${other_total} + ${array[2]})) ;; esac } ; done echo -e "Usr\tOpt\tOther" echo -e "${usr_total}\t${opt_total}\t${other_total}" IFS=$OIFS