SYSCTL(8) | Administração do sistema | SYSCTL(8) |
sysctl - configura parâmetros do kernel em tempo de execução
sysctl [opções]
[variável[=valor]] [...]
sysctl -p [arquivo ou regexp] [...]
sysctl é usado para modificar parâmetros do kernel em tempo de execução. Os parâmetros disponíveis são aqueles listados sob /proc/sys/. Procfs é exigido para o suporte a sysctl no Linux. Você pode usar sysctl para ler e escrever dados de sysctl.
When using the --system option, sysctl will read files from directories in the following list in given order from top to bottom. Once a file of a given filename is loaded, any file of the same name in subsequent directories is ignored.
/etc/sysctl.d/*.conf
/run/sysctl.d/*.conf
/usr/local/lib/sysctl.d/*.conf
/usr/lib/sysctl.d/*.conf
/lib/sysctl.d/*.conf
/etc/sysctl.conf
All configuration files are sorted in lexicographic order, regardless of the directory they reside in. Configuration files can either be completely replaced (by having a new configuration file with the same name in a directory of higher priority) or partially replaced (by having a configuration file that is ordered later).
/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 --pattern '^net.ipv6' --system
O base_reachable_time e retrans_time foram descontinuados. O comando sysctl não permite alterar os valores desses parâmetros. Os usuários que insistem em usar interfaces de kernel descontinuadas devem inserir valores no sistema de arquivos /proc por outros meios. Por exemplo:
echo 256 > /proc/sys/net/ipv6/neigh/eth0/base_reachable_time
/proc/sys
/etc/sysctl.d/*.conf
/run/sysctl.d/*.conf
/usr/local/lib/sysctl.d/*.conf
/usr/lib/sysctl.d/*.conf
/lib/sysctl.d/*.conf
/etc/sysctl.conf
Por favor, envie relatórios de erros para procps@freelists.org
2021-03-29 | procps-ng |