Sysctl: Unterschied zwischen den Versionen
KKeine Bearbeitungszusammenfassung |
KKeine Bearbeitungszusammenfassung |
||
Zeile 1: | Zeile 1: | ||
'''sysctl''' configure kernel parameters at runtime | '''sysctl''' configure kernel parameters at runtime | ||
= | = Beschreibung = | ||
* sysctl | * sysctl is used to modify kernel parameters at runtime. | ||
* The parameters available are those listed under /proc/sys/. | * The parameters available are those listed under /proc/sys/. | ||
* Procfs is required for sysctl support in Linux. | * Procfs is required for sysctl support in Linux. You can use sysctl to both read and write sysctl data. | ||
= | = Syntax = | ||
sysctl [options] [variable[=value]] [...] | sysctl [options] [variable[=value]] [...] | ||
sysctl -p [file or regexp] [...] | sysctl -p [file or regexp] [...] | ||
= | = Parateter = | ||
variable | variable | ||
The name of a key to read from. | The name of a key to read from. An example is kernel.ostype. The '/' separator is also accepted in place of a '.'. | ||
variable=value | 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 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 | 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. | requires the -w parameter to use. | ||
Zeile 26: | Zeile 26: | ||
-N, --names | -N, --names | ||
Use this option to only print the names. | Use this option to only print the names. It may be useful with shells that have programmable completion. | ||
-q, --quiet | -q, --quiet | ||
Zeile 35: | Zeile 35: | ||
-p[FILE], --load[=FILE] | -p[FILE], --load[=FILE] | ||
Load in sysctl settings from the file specified or /etc/sysctl.conf if none given. | Load in sysctl settings from the file specified or /etc/sysctl.conf if none given. Specifying - as filename means reading | ||
data from standard input. | data from standard input. Using this option will mean arguments to sysctl are files, which are read in the order they are | ||
specified. | specified. The file argument may be specified as regular expression. | ||
-a, --all | -a, --all | ||
Zeile 58: | Zeile 58: | ||
-r, --pattern pattern | -r, --pattern pattern | ||
Only apply settings that match pattern. | Only apply settings that match pattern. The pattern uses extended regular expression syntax. | ||
-A | -A Alias of -a | ||
-d | -d Alias of -h | ||
-f | -f Alias of -p | ||
-X | -X Alias of -a | ||
-o | -o Does nothing, exists for BSD compatibility. | ||
-x | -x Does nothing, exists for BSD compatibility. | ||
-h, --help | -h, --help | ||
Zeile 78: | Zeile 78: | ||
Display version information and exit. | Display version information and exit. | ||
= Beispiele = | |||
/sbin/sysctl -a | /sbin/sysctl -a | ||
/sbin/sysctl -n kernel.hostname | /sbin/sysctl -n kernel.hostname | ||
Zeile 88: | Zeile 88: | ||
/sbin/sysctl --system --pattern '^net.ipv6' | /sbin/sysctl --system --pattern '^net.ipv6' | ||
= Veraötete Parameter = | |||
The base_reachable_time and retrans_time are deprecated. | The base_reachable_time and retrans_time are deprecated. The sysctl command does not allow changing values of these parameters. | ||
Users who insist to use deprecated kernel interfaces should push values to /proc file system by other means. | Users who insist to use deprecated kernel interfaces should push values to /proc file system by other means. For example: | ||
echo 256 > /proc/sys/net/ipv6/neigh/eth0/base_reachable_time | echo 256 > /proc/sys/net/ipv6/neigh/eth0/base_reachable_time | ||
= Dateien = | |||
/proc/sys | /proc/sys | ||
/etc/sysctl.conf | /etc/sysctl.conf | ||
= Links = | |||
= Man-Pages = | |||
sysctl.conf(5) regex(7) | |||
procps-ng | procps-ng |
Version vom 30. Januar 2022, 01:12 Uhr
sysctl configure kernel parameters at runtime
Beschreibung
- sysctl is used to modify kernel parameters at runtime.
- The parameters available are those listed under /proc/sys/.
- Procfs is required for sysctl support in Linux. You can use sysctl to both read and write sysctl data.
Syntax
sysctl [options] [variable[=value]] [...] sysctl -p [file or regexp] [...]
Parateter
variable
The name of a key to read from. An example is kernel.ostype. The '/' separator is also accepted in place of a '.'.
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, --values
Use this option to disable printing of the key name when printing values.
-e, --ignore
Use this option to ignore errors about unknown keys.
-N, --names
Use this option to only print the names. It may be useful with shells that have programmable completion.
-q, --quiet
Use this option to not display the values set to stdout.
-w, --write
Use this option when you want to change a sysctl setting.
-p[FILE], --load[=FILE]
Load in sysctl settings from the file specified or /etc/sysctl.conf if none given. Specifying - as filename means reading data from standard input. Using this option will mean arguments to sysctl are files, which are read in the order they are specified. The file argument may be specified as regular expression.
-a, --all
Display all values currently available.
--deprecated
Include deprecated parameters to --all values listing.
-b, --binary
Print value without new line.
--system
Load settings from all system configuration files. /run/sysctl.d/*.conf /etc/sysctl.d/*.conf /usr/local/lib/sysctl.d/*.conf /usr/lib/sysctl.d/*.conf /lib/sysctl.d/*.conf /etc/sysctl.conf
-r, --pattern pattern
Only apply settings that match pattern. The pattern uses extended regular expression syntax.
-A Alias of -a
-d Alias of -h
-f Alias of -p
-X Alias of -a
-o Does nothing, exists for BSD compatibility.
-x Does nothing, exists for BSD compatibility.
-h, --help
Display help text and exit.
-V, --version
Display version information and exit.
Beispiele
/sbin/sysctl -a /sbin/sysctl -n kernel.hostname /sbin/sysctl -w kernel.domainname="example.com" /sbin/sysctl -p/etc/sysctl.conf /sbin/sysctl -a --pattern forward /sbin/sysctl -a --pattern forward$ /sbin/sysctl -a --pattern 'net.ipv4.conf.(eth|wlan)0.arp' /sbin/sysctl --system --pattern '^net.ipv6'
= Veraötete Parameter = The base_reachable_time and retrans_time are deprecated. The sysctl command does not allow changing values of these parameters. Users who insist to use deprecated kernel interfaces should push values to /proc file system by other means. For example:
echo 256 > /proc/sys/net/ipv6/neigh/eth0/base_reachable_time
Dateien
/proc/sys /etc/sysctl.conf
Links
Man-Pages
sysctl.conf(5) regex(7)
procps-ng