User:Chomar

(tuning event.d)
 
(4 intermediate revisions not shown)
Line 3: Line 3:
I'll try to contribute the Wiki anyway (as soon as i have a bit of time.) <br />
I'll try to contribute the Wiki anyway (as soon as i have a bit of time.) <br />
Feel free to edit whatever I typed. (Language AND Content, of course)<br />
Feel free to edit whatever I typed. (Language AND Content, of course)<br />
 +
 +
 +
== Maemo Tuning ==
 +
 +
=== Power Kernel ===
 +
Installed [[Kernel_Power | Power Kernel]]
 +
used ideal setting 500-950 Mhz
 +
 +
=== tuning event.d ===
 +
 +
added a little script to /etc/event.d with the following content
 +
 +
<pre>
 +
script
 +
description "N900 tuning"
 +
author "VA"
 +
 +
console output
 +
 +
start on started rcS-late
 +
 +
script
 +
      echo "30" > /proc/sys/vm/swappiness
 +
      echo "0" > /proc/sys/vm/page-cluster
 +
      echo "1" > /proc/sys/vm/laptop_mode
 +
      echo "1" > /proc/sys/vm/oom_kill_allocating_task
 +
      echo "0" > /proc/sys/vm/dirty_expire_centisecs
 +
      echo "0" > /proc/sys/vm/dirty_writeback_centisecs
 +
      echo "60" > /proc/sys/vm/dirty_background_ratio
 +
      echo "95" > /proc/sys/vm/dirty_ratio
 +
      echo "0" > /proc/sys/net/ipv4/tcp_timestamps
 +
      echo "1" > /proc/sys/net/ipv4/tcp_no_metrics_save
 +
end script
 +
 +
</pre>

Latest revision as of 09:20, 5 October 2010

Hi im ChoMar (yeah, maybe ill post my RL name later)
Im from Germany, therefor my English is a bit rough.
I'll try to contribute the Wiki anyway (as soon as i have a bit of time.)
Feel free to edit whatever I typed. (Language AND Content, of course)


[edit] Maemo Tuning

[edit] Power Kernel

Installed Power Kernel used ideal setting 500-950 Mhz

[edit] tuning event.d

added a little script to /etc/event.d with the following content

script
description "N900 tuning"
author "VA"

console output

start on started rcS-late

script
       echo "30" > /proc/sys/vm/swappiness
       echo "0" > /proc/sys/vm/page-cluster
       echo "1" > /proc/sys/vm/laptop_mode
       echo "1" > /proc/sys/vm/oom_kill_allocating_task
       echo "0" > /proc/sys/vm/dirty_expire_centisecs
       echo "0" > /proc/sys/vm/dirty_writeback_centisecs
       echo "60" > /proc/sys/vm/dirty_background_ratio
       echo "95" > /proc/sys/vm/dirty_ratio
       echo "0" > /proc/sys/net/ipv4/tcp_timestamps
       echo "1" > /proc/sys/net/ipv4/tcp_no_metrics_save
end script