Active Topics

 


Poll: Is your N9 in open mode?
Poll Options
Is your N9 in open mode?

Reply
Thread Tools
Posts: 104 | Thanked: 30 times | Joined on Jun 2012
#1431
I have to.report I had to go back.to stable version.
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.
 
Posts: 324 | Thanked: 739 times | Joined on Jun 2009 @ São Paulo, Brazil
#1432
Originally Posted by MoritzJT View Post
Shouldn't it be possible now to write an app that has full access to anything with coderus aegis-installer now?
You mean inception or am I missing something?
 
Posts: 649 | Thanked: 762 times | Joined on Mar 2012 @ Ohio
#1433
Originally Posted by traysh View Post
You mean inception or am I missing something?
Read this.
 
Posts: 509 | Thanked: 626 times | Joined on Jul 2012 @ Mexico/Germany
#1434
Hy there,

i had installed FasterN9 (stable) with N9Qtweak. But after install, i had a very bad wifi-connection. A lot of interruptions and slow speed. After remove FasterN9 wifi is fast and stable like before. Any sugestions?
Thanks, Chilango
 
Posts: 6 | Thanked: 0 times | Joined on Aug 2013
#1435
Sounds goods, Thanks for the info.....
 
Posts: 458 | Thanked: 783 times | Joined on Jan 2010 @ France
#1436
Originally Posted by traysh View Post
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.

Hi traysh,

Did you Read this ?

I think you can provide same level of fine tuning with this workaround ...

Can you please install that on you device and try to circumvent the aegis problem ?

Hope it help ...

A++
 
Schturman's Avatar
Posts: 5,339 | Thanked: 4,133 times | Joined on Jan 2010 @ Israel
#1437
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.
 
Posts: 697 | Thanked: 137 times | Joined on Jul 2012 @ Hillerød, DK
#1438
Originally Posted by Schturman View Post
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.
Schturman the code for reinstall develsh package please!?

Edit: http://talk.maemo.org/showpost.php?p...2&postcount=45
__________________
OK

Last edited by Garp; 2013-10-16 at 21:03.
 
Schturman's Avatar
Posts: 5,339 | Thanked: 4,133 times | Joined on Jan 2010 @ Israel
#1439
 

The Following User Says Thank You to Schturman For This Useful Post:
Posts: 458 | Thanked: 783 times | Joined on Jan 2010 @ France
#1440
Originally Posted by traysh View Post
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)
Hey traysh !!!

Tested with aegis installer hack by coderus and it work !!!

Obviously, your example need to be modified to take care of non existent processes to 'renice' and to use the binary 'ionice' in place of your 'ionice.real' binary.

To ease my tests I have made a quick & dirty script.

Look the code to use :

Code:
#!/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
And here is the results :

Code:
~ $ ./fastern9-ionice 
realtime: prio 0
idle
idle
realtime: prio 7
idle
idle
idle
idle
idle
~ $
Hope it help you to made a new package with these informations ...

A++
 

The Following 6 Users Say Thank You to colin.stephane For This Useful Post:
Reply


 
Forum Jump


All times are GMT. The time now is 01:21.