首页 > 系统服务 > 详细

每日linux命令学习-3-sysctl

时间:2016-03-28 18:44:17      阅读:152      评论:0      收藏:0      [点我收藏+]

sysctl 内核变量配置

Usage:
sysctl [options] [variable[=value] ...]
 
NAME
sysctl - configure kernel parameters at runtime
 
DESCRIPTION
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.
 
Options:
-a, --all display all variables
-A alias of -a
-X alias of -a
--deprecated include deprecated parameters to listing
-b, --binary print value without new line
-e, --ignore ignore unknown variables errors
-N, --names print variable names without values
-n, --values print only values of a variables
-p, --load[=<file>] read values from file
-f alias of -p
--system read values from all system directories
-r, --pattern <expression>
select setting that match expression
-q, --quiet do not echo variable set
-w, --write enable writing a value to variable
-o does nothing
-x does nothing
-d alias of -h
 
-h, --help display this help and exit
-V, --version output version information and exit
  
实例1:
/sbin/sysctl -a
显示所有变量
技术分享
 
实例2:
只打印固定的一个变量
/sbin/sysctl -n kernel.hostname
 
技术分享
 
/sbin/sysctl -n net.ipv4.tcp_timestamps
 
技术分享
 
实例3:
写入内核变量
/sbin/sysctl -w kernel.domainname="example.com"
 
技术分享
 
实例4:
读取数据
/sbin/sysctl -p/etc/sysctl.conf
无输出
 
实例5:
正则匹配
/sbin/sysctl -a --pattern forward
 
技术分享
 
/sbin/sysctl -a --pattern forward$
技术分享
 
 
/sbin/sysctl -a --pattern ‘net.ipv4.conf.(eth|wlan)0.arp‘
 
技术分享
 
 
 

 

每日linux命令学习-3-sysctl

原文:http://www.cnblogs.com/davygeek/p/5329973.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!