Advertisement
Guest User

Untitled

a guest
Jan 27th, 2016
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. # swap when less than N % mem is available
  2. vm.swappiness = 10
  3.  
  4. # cache inodes (50 = don't shrink inode cache)
  5. vm.vfs_cache_pressure = 50
  6.  
  7. # % memory available for all processes -- some suggest 50
  8. vm.overcommit_ratio = 100
  9.  
  10. # 0 = fuzzy available memory guessing : bad
  11. # 1 = high performance, high risk : bad
  12. # 2 = don't use more memory than swap + overcommit_ratio % : good
  13. vm.overcommit_memory = 2
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement