View Single Post
Posts: 208 | Thanked: 91 times | Joined on Jun 2010
#18
Originally Posted by Bobbe View Post
Mine won't OC to 1 ghz, 900 is how much it takes for the team =)

The other tips are great though, thanks!

Had no idea apt activated every time I have internet conectivity. Does disabling all repos fix this?

Also, how do I change the tracker config?
Tracker cfg is in the Extras dev repository last I checked. I killed almost everything in there.

For the other configs I have a script I run manually in xTerminal after a restart. It over clocks to 950 Mhz and does the swappiness changes, I might make it a permanent change after a few more weeks, I havn't had any problems with it so far and things run tip top.

Code:
#!/bin/sh

echo 950000 > /sys/devices/system/cpu/cpu0/cpufreq/scaling_max_freq
echo 500000 > /sys/devices/system/cpu/cpu0/cpufreq/scaling_min_freq
echo 900000 805000 750000 600000 500000 125000 > /sys/devices/system/cpu/cpu0/cpufreq/avoid_frequencies

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

echo Done