I use "echo 0 > /proc/sys/vm/swappiness" to set swappiness but even if I'm root i've got access denied. Do you know what should I do to unlock it ?

link|improve this question

44% accept rate
It may happen that even if SELinux status is disabled, one would get permission denied issues. – suresh Dec 1 '11 at 20:16
feedback

2 Answers

up vote 4 down vote accepted

I suspect SELinux. Try getenforce and if it returns enforcing, you can temporarily disable SELinux with setenforce 0. For permanent disablement see /etc/selinux/config.

Before disabling SELinux you may try sysctl -w vm.swappiness=0.

link|improve this answer
feedback

You might want to check if SELinux is active. It imposes restrictions even on root.

The commmand sestatus will tell you if SELinux is active.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.