| OLD | NEW |
| 1 # /etc/sysctl.conf | 1 # /etc/sysctl.conf |
| 2 # | 2 # |
| 3 # For more information on how this file works, please see | 3 # For more information on how this file works, please see |
| 4 # the manpages sysctl(8) and sysctl.conf(5). | 4 # the manpages sysctl(8) and sysctl.conf(5). |
| 5 # | 5 # |
| 6 # In order for this file to work properly, you must first | 6 # In order for this file to work properly, you must first |
| 7 # enable 'Sysctl support' in the kernel. | 7 # enable 'Sysctl support' in the kernel. |
| 8 # | 8 # |
| 9 # Look in /proc/sys/ for all the things you can setup. | 9 # Look in /proc/sys/ for all the things you can setup. |
| 10 # | 10 # |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 #kernel.panic = 3 | 45 #kernel.panic = 3 |
| 46 # Allow for more PIDs (cool factor!); may break some programs | 46 # Allow for more PIDs (cool factor!); may break some programs |
| 47 #kernel.pid_max = 999999 | 47 #kernel.pid_max = 999999 |
| 48 | 48 |
| 49 # You should compile nfsd into the kernel or add it | 49 # You should compile nfsd into the kernel or add it |
| 50 # to modules.autoload for this to work properly | 50 # to modules.autoload for this to work properly |
| 51 # TCP Port for lock manager | 51 # TCP Port for lock manager |
| 52 #fs.nfs.nlm_tcpport = 0 | 52 #fs.nfs.nlm_tcpport = 0 |
| 53 # UDP Port for lock manager | 53 # UDP Port for lock manager |
| 54 #fs.nfs.nlm_udpport = 0 | 54 #fs.nfs.nlm_udpport = 0 |
| 55 |
| 56 # Protect working set in order to avoid thrashing. |
| 57 # See http://crosbug.com/7561 for details. |
| 58 vm.min_filelist_kbytes = 50000 |
| OLD | NEW |