Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

sysctl.conf(5) [linux man page]

SYSCTL.CONF(5)															    SYSCTL.CONF(5)

NAME
sysctl.conf - sysctl(8) preload/configuration file DESCRIPTION
sysctl.conf is a simple file containing sysctl values to be read in and set by sysctl(8). The syntax is simply as follows: # comment ; comment token = value Note that blank lines are ignored, and whitespace before and after a token or value is ignored, although a value can contain whitespace within. Lines which begin with a # or ; are considered comments and ignored. EXAMPLE
# sysctl.conf sample # kernel.domainname = example.com ; this one has a space which will be written to the sysctl! kernel.modprobe = /sbin/mod probe SEE ALSO
sysctl(8) AUTHOR
George Staikos, <staikos@0wned.org> 21 Sep 1999 SYSCTL.CONF(5)

Check Out this Related Man Page

SYSCTL.CONF(5)						      BSD File Formats Manual						    SYSCTL.CONF(5)

NAME
sysctl.conf -- kernel state defaults DESCRIPTION
The /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 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. FILES
/etc/sysctl.conf Initial settings for sysctl(8). EXAMPLES
To 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) SEE ALSO
rc.conf(5), rc(8), sysctl(8) HISTORY
The sysctl.conf file appeared in FreeBSD 4.0. BUGS
If loadable kernel modules are used to introduce additional kernel functionality and sysctls to manage that functionality, sysctl.conf may be processed too early in the boot process to set those sysctls. For example, sysctls to manage the linux emulator cannot be set in sysctl.conf if the linux emulator is loaded as a module rather than compiled into the kernel. BSD
December 30, 1999 BSD
Man Page