Besides sysctl.conf you have to edit /proc/sys/vm/swappiness, just replace with 90. Then you can use sudo swapoff -a and sudo swapon -a to load the new value without rebooting.
cereal
Veteran Poster
1,145 posts since Aug 2007
Reputation Points: 344
Solved Threads: 222
Skill Endorsements: 22
That can happen if you run a command like this one:
sudo echo "90" > /proc/sys/vm/swappiness
So, try this:
echo "90" | sudo tee /proc/sys/vm/swappiness
If you still get an error then check file permission, user and group:
ls -l /proc/sys/vm/swappiness
and post back here, maybe someone else will give you a better support. Bye!
cereal
Veteran Poster
1,145 posts since Aug 2007
Reputation Points: 344
Solved Threads: 222
Skill Endorsements: 22
Question Answered as of 9 Months Ago by
cereal