|
2013-08-16
, 10:50
|
Posts: 324 |
Thanked: 739 times |
Joined on Jun 2009
@ São Paulo, Brazil
|
#1432
|
|
2013-09-02
, 23:21
|
Posts: 509 |
Thanked: 626 times |
Joined on Jul 2012
@ Mexico/Germany
|
#1434
|
|
2013-09-04
, 05:05
|
Posts: 6 |
Thanked: 0 times |
Joined on Aug 2013
|
#1435
|
|
2013-10-16
, 19:26
|
Posts: 458 |
Thanked: 783 times |
Joined on Jan 2010
@ France
|
#1436
|
I'm not sure this tracker corruptions are caused by FasterN9, but it is possible. This problem has been rarely reported, so it's difficult to say for sure.
The problem of having a GUI is that editing the system file that controls the priorities is dangeours (and requires a reboot). There would be a risk of malf after every edit. That's why I never did it.
I found a way sometime ago to reduce the side effects of FasterN9 a lot by tweaking the processes IO priorities, so I wouldn't need to change the CPU priorities so much. The problem is that aegis won't let me do that in not open-mode phones, and don't have the time to learn how to work arround that, so it's very frustrating.
|
2013-10-16
, 20:44
|
|
Posts: 5,339 |
Thanked: 4,133 times |
Joined on Jan 2010
@ Israel
|
#1437
|
|
2013-10-16
, 20:57
|
Posts: 697 |
Thanked: 137 times |
Joined on Jul 2012
@ Hillerød, DK
|
#1438
|
Yep, it's good idea! Just install Coderus Aegis-install and opensudo. Also, you can add both of them as depends to your package for normal mode users.
PS. Also you need to know that after installation of Coderus Aegis-install, you should reinstall "develsh" package... Don't know why, but it somehow affect this package and he not work properly till you reinstall him.
|
2013-10-16
, 20:59
|
|
Posts: 5,339 |
Thanked: 4,133 times |
Joined on Jan 2010
@ Israel
|
#1439
|
apt-get install --reinstall develsh
The Following User Says Thank You to Schturman For This Useful Post: | ||
|
2013-10-18
, 22:54
|
Posts: 458 |
Thanked: 783 times |
Joined on Jan 2010
@ France
|
#1440
|
If you do install the new version 1.1.5, would you please run both as root and user the following commands and paste the result here?
Code:/opt/fastern9/bin/ionice.real -c 1 -n 0 -p $(pidof meegotouchhome) /opt/fastern9/bin/ionice.real -c 3 -p $(pidof tracker-store) /opt/fastern9/bin/ionice.real -c 3 -p $(pidof tracker-miner-fs) /opt/fastern9/bin/ionice.real -c 1 -n 7 -p $(pidof bme_RX-71) /opt/fastern9/bin/ionice.real -c 3 -p $(pidof facebook-meego) /opt/fastern9/bin/ionice.real -c 3 -p $(pidof twitter-meego) /opt/fastern9/bin/ionice.real -c 3 -p $(pidof commhistoryd) /opt/fastern9/bin/ionice.real -c 3 -p $(pidof msgindexer) /opt/fastern9/bin/ionice.real -c 3 -p $(pidof messageserver) /opt/fastern9/bin/ionice.real -c 3 -p $(pidof feedengine) /opt/fastern9/bin/ionice.real -c 3 -p $(pidof msyncd) /opt/fastern9/bin/ionice.real -p $(pidof meegotouchhome) /opt/fastern9/bin/ionice.real -p $(pidof tracker-store) /opt/fastern9/bin/ionice.real -p $(pidof tracker-miner-fs) /opt/fastern9/bin/ionice.real -p $(pidof bme_RX-71) /opt/fastern9/bin/ionice.real -p $(pidof facebook-meego) /opt/fastern9/bin/ionice.real -p $(pidof twitter-meego) /opt/fastern9/bin/ionice.real -p $(pidof commhistoryd) /opt/fastern9/bin/ionice.real -p $(pidof msgindexer) /opt/fastern9/bin/ionice.real -p $(pidof messageserver) /opt/fastern9/bin/ionice.real -p $(pidof feedengine) /opt/fastern9/bin/ionice.real -p $(pidof msyncd)
#!/bin/bash if [ $(pidof meegotouchhome) ] ; then sudo ionice -c 1 -n 0 -p $(pidof meegotouchhome) fi if [ $(pidof tracker-store) ] ; then sudo ionice -c 3 -p $(pidof tracker-store) fi if [ $(pidof tracker-miner-fs) ] ; then sudo ionice -c 3 -p $(pidof tracker-miner-fs) fi if [ $(pidof bme_RX-71) ] ; then sudo ionice -c 1 -n 7 -p $(pidof bme_RX-71) fi if [ $(pidof facebook-meego) ] ; then sudo ionice -c 3 -p $(pidof facebook-meego) fi if [ $(pidof twitter-meego) ] ; then sudo ionice -c 3 -p $(pidof twitter-meego) fi if [ $(pidof commhistoryd) ] ; then sudo ionice -c 3 -p $(pidof commhistoryd) fi if [ $(pidof msgindexer) ] ; then sudo ionice -c 3 -p $(pidof msgindexer) fi if [ $(pidof messageserver) ] ; then sudo ionice -c 3 -p $(pidof messageserver) fi if [ $(pidof feedengine) ] ; then sudo ionice -c 3 -p $(pidof feedengine) fi if [ $(pidof msyncd) ] ; then sudo ionice -c 3 -p $(pidof msyncd) fi if [ $(pidof meegotouchhome) ] ; then sudo ionice -p $(pidof meegotouchhome) fi if [ $(pidof tracker-store) ] ; then sudo ionice -p $(pidof tracker-store) fi if [ $(pidof tracker-miner-fs) ] ; then sudo ionice -p $(pidof tracker-miner-fs) fi if [ $(pidof bme_RX-71) ] ; then sudo ionice -p $(pidof bme_RX-71) fi if [ $(pidof facebook-meego) ] ; then sudo ionice -p $(pidof facebook-meego) fi if [ $(pidof twitter-meego) ] ; then sudo ionice -p $(pidof twitter-meego) fi if [ $(pidof commhistoryd) ] ; then sudo ionice -p $(pidof commhistoryd) fi if [ $(pidof msgindexer) ] ; then sudo ionice -p $(pidof msgindexer) fi if [ $(pidof messageserver) ] ; then sudo ionice -p $(pidof messageserver) fi if [ $(pidof feedengine) ] ; then sudo ionice -p $(pidof feedengine) fi if [ $(pidof msyncd) ] ; then sudo ionice -p $(pidof msyncd) fi
~ $ ./fastern9-ionice realtime: prio 0 idle idle realtime: prio 7 idle idle idle idle idle ~ $
Using 1.1.7 for a couple of weeks now. When I open more than 6 applications, the UI starts to stutter and the phone hangs. A couple of times I had to force restart it, because it was not responding.