Penguin

Differences between current version and previous revision of sysctl(8).

Other diffs: Previous Major Revision, Previous Author, or view the Annotated Edit History

Newer page: version 3 Last edited on Sunday, May 18, 2003 2:33:48 pm by PerryLorier
Older page: version 2 Last edited on Monday, June 3, 2002 6:56:52 pm by perry Revert
@@ -1,116 +1,45 @@
-SYSCTL  
-!!!SYSCTL  
-NAME  
-SYNOPSIS  
-DESCRIPTION  
-PARAMETERS  
-EXAMPLES  
-FILES  
-SEE ALSO  
-BUGS  
-AUTHOR  
-----  
 !!NAME 
+sysctl - configure kernel parameters at runtime  
  
-  
-sysctl - configure kernel parameters at runtime  
 !!SYNOPSIS 
-  
-  
- __sysctl [[-n] variable ...  
-sysctl [[-n] -w variable=value ...  
-sysctl [[-n] -p  
-sysctl [[-n] -a  
-sysctl [[-n] -A__ 
+ __sysctl [[-n] __'' variable''__ ...__  
+ __ sysctl [[-n] -w __'' variable''__ =__'' value''__ ...__  
+ __ sysctl [[-n] -p__  
+ __ sysctl [[-n] -a__  
+ __ sysctl [[-n] -A__ 
 !!DESCRIPTION 
+sysctl(8) is used to modify kernel parameters at runtime. The parameters available are those listed under /proc/sys/. Procfs is required for sysctl(8) support  
+in Linux. You can use sysctl(8) to both read and write sysctl data.  
  
-  
-__sysctl__ is used to modify kernel parameters at  
-runtime. The parameters available are those listed under  
-/proc/sys/. Procfs is required for __sysctl(8)__ support  
-in Linux. You can use __sysctl(8)__ to both read and  
-write sysctl data.  
 !!PARAMETERS 
+;__variable__: The name of a key to read from. An example is kernel.ostype. The '/' separator is also accepted in place of a '.'.  
  
  
-__variable__ 
+; __variable=value __: To set a key, use the form variable=value, where variable is the key and value is the value to set it to. If the value contains quotes or characters which are parsed by the shell, you may need to enclose the value in double quotes. This requires the -w parameter to use.  
  
+;__-n__: Use this option to disable printing of the key name when printing values.  
  
-The name of a key to read from. An example is kernel.ostype.  
-The '/' separator is also accepted in place of a  
-'.'
+;__-w__: Use this option when you want to change a sysctl setting
  
+;__-p__: Load in sysctl settings from the file specified or /etc/sysctl.conf if none given.  
  
-__variable=value __ 
+; __-a __: Display all values currently available.  
  
+;__-A__: Display all values currently available in table form.  
  
-To set a key, use the form variable=value, where variable is  
-the key and value is the value to set it to. If the value  
-contains quotes or characters which are parsed by the shell,  
-you may need to enclose the value in double quotes. This  
-requires the -w parameter to use.  
-  
-  
-__-n__  
-  
-  
-Use this option to disable printing of the key name when  
-printing values.  
-  
-  
-__-w__  
-  
-  
-Use this option when you want to change a sysctl  
-setting.  
-  
-  
-__-p__  
-  
-  
-Load in sysctl settings from the file specified or  
-/etc/sysctl.conf if none given.  
-  
-  
-__-a__  
-  
-  
-Display all values currently available.  
-  
-  
-__-A__  
-  
-  
-Display all values currently available in table  
-form.  
 !!EXAMPLES 
-  
-  
- /sbin/sysctl -a  
-  
-  
-/sbin/sysctl -n kernel.hostname  
-  
-  
-/sbin/sysctl -w  
- kernel.domainname=  
-  
-  
-/sbin/sysctl -p /etc/sysctl.conf 
+ /sbin/sysctl -a  
+ /sbin/sysctl -n kernel.hostname  
+ /sbin/sysctl -w kernel.domainname='example.com'  
+ /sbin/sysctl -p /etc/sysctl.conf 
 !!FILES 
+''/proc/sys /etc/sysctl.conf''  
  
-  
-''/proc/sys /etc/sysctl.conf''  
 !!SEE ALSO 
+sysctl.conf(5)  
  
-  
-sysctl.conf(5)  
 !!BUGS 
+The -A parameter behaves just as -a does.  
  
-  
-The -A parameter behaves just as -a does.  
 !!AUTHOR 
-  
-  
- George Staikos,  
-----  
+George Staikos, <staikos@0wned.org>  
This page is a man page (or other imported legacy content). We are unable to automatically determine the license status of this page.