标签:linux 禁用模块 linux 禁用ipv6 centos禁用ipv6 centos 禁用模块
装完centos后,默认开启了一些模块,但是有些模块并不是我们必须的。比如目前尚未在中国普及的IPV6
如何关闭IPV6呢
下面介绍的方法,也可以在关闭其他模块的时候使用
第一步:
查找模块名称
使用命令:lsmod 查看系统启动的模块,找出我们需要的
IPV6相关的2个模块分别是net-pf-10 ipv6
第二步:
编辑/etc/modprobe.d/dist.conf
在最后加入
#edit by dwj 备注一下编辑信息
alias net-pf-10 off
alias ipv6 off
重启之后,再lsmod下看看是不是还在
另外:临时移除一个模块的命令是 modprobe -r + 模块名
比如有些linux桌面没有禁用触摸板的程序,可以使用 modprobe -r psmouse 临时移除触摸板模块
centos6.5 (linux) 禁用模块 IPV6模块的方法,布布扣,bubuko.com
centos6.5 (linux) 禁用模块 IPV6模块的方法
标签:linux 禁用模块 linux 禁用ipv6 centos禁用ipv6 centos 禁用模块
原文地址:http://blog.csdn.net/smallfish1983/article/details/38387449