The Following User Says Thank You to shadowjk For This Useful Post: | ||
![]() |
2010-09-09
, 19:56
|
|
Posts: 909 |
Thanked: 216 times |
Joined on Nov 2009
@ Bremen, Germany
|
#42
|
# swappiness auf 30
start on started rcS-late
script
echo 30 > /proc/sys/vm/swappiness
end script
![]() |
2010-09-09
, 20:12
|
Posts: 2,829 |
Thanked: 1,459 times |
Joined on Dec 2009
@ Finland
|
#43
|
...and I now have a script that checks iostat for amount of writes and does swapoff/swapon/swapoff via a temporary swapfile when writes exceed swap size..
The Following User Says Thank You to slender For This Useful Post: | ||
![]() |
2010-09-09
, 20:41
|
Posts: 42 |
Thanked: 13 times |
Joined on Jun 2010
@ Netherlands
|
#44
|
i created a file named swapmop in etc/event.d/
content:
then i rebooted.
when doing cat /proc/sys/vm/swappiness, it still sais "100"
what am i doing wrong? :O
#!/bin/sh
chmod a+x /etc/event.d/swapmop
The Following User Says Thank You to sake For This Useful Post: | ||
![]() |
2010-09-09
, 21:09
|
|
Posts: 909 |
Thanked: 216 times |
Joined on Nov 2009
@ Bremen, Germany
|
#45
|
try to add:
at the very beginning of your script.Code:#!/bin/sh
also try
as rootCode:chmod a+x /etc/event.d/swapmop
![]() |
2010-09-10
, 20:49
|
Posts: 992 |
Thanked: 995 times |
Joined on Dec 2009
@ California
|
#46
|
description "tuning system" author My Name console output start on started rcS-late script echo "30" > /proc/sys/vm/swappiness end script
The Following User Says Thank You to egoshin For This Useful Post: | ||
![]() |
2010-09-10
, 21:01
|
Posts: 515 |
Thanked: 266 times |
Joined on Nov 2009
@ Oelsted, Denmark
|
#47
|
ha, there is a difference: my RAM-usage is constantly at around 180 mb. not sure if thats good...?!
![]() |
2010-09-10
, 22:13
|
|
Posts: 909 |
Thanked: 216 times |
Joined on Nov 2009
@ Bremen, Germany
|
#48
|
#!/bin/sh should not have difference. But don't forget a space between 30 and >
Actually, it is better to use this script in /etc/event.d/myscript
Sorry for possible misguide...
description "tuning system" author My Name console output
![]() |
2010-09-10
, 22:24
|
Posts: 515 |
Thanked: 266 times |
Joined on Nov 2009
@ Oelsted, Denmark
|
#49
|
description "System Tuning" author "Christian Wilken" console output start on started rcS-late script echo "30" > /proc/sys/vm/swappiness echo "1" > /proc/sys/vm/oom_kill_allocating_task end script
![]() |
2010-09-10
, 22:55
|
Posts: 166 |
Thanked: 30 times |
Joined on Apr 2010
@ Halifax, UK
|
#50
|
At one point I plotted all writes done by kswapd, and found that it's indeed mostly sequential until it reaches the end of the swap area, after which it becomes increasingly random.. swapoff/swapon fixes that, and I now have a script that checks iostat for amount of writes and does swapoff/swapon/swapoff via a temporary swapfile when writes exceed swap size..