|
NAME
DESCRIPTIONThe /etc/sysctl.conf file is read in when the system goes into multi-user mode to set default settings for the kernel. The /etc/sysctl.conf file is in the format of the sysctl(8) command, i.e., sysctl_mib=value Comments are denoted by a “#” at the beginning of a line. Comments can also exist at the end of a line, as seen in the EXAMPLES section, below. For kernel modules loaded via rc.subr(8) system, additional module-specific settings can be applied by adding a file in the same format named /etc/sysctl.kld.d/<modulename>.conf. FILES
EXAMPLESTo turn off logging of programs that exit due to fatal signals you may use a configuration like # Configure logging. kern.logsigexit=0 # Do not log fatal signal exits (e.g., sig 11) HISTORYThe BUGSIf loadable kernel modules are used to introduce additional kernel
functionality and sysctls to manage that functionality,
|