CentOS7及CentOS6下开机加载内核模块
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CentOS7及CentOS6下开机加载内核模块相关的知识,希望对你有一定的参考价值。
说明:最近感觉记忆力下降的厉害,好多以前在脑海固话的知识点,都会出现断片的现象,所以选择记录下常用的知识点,备忘。
CentOS7:
以ceph模块为例: # cd /etc/sysconfig/modules/ # vim ceph.modules 在文件中添加如下内容 #!/bin/sh /sbin/modinfo -F filename ceph > /dev/null 2>&1 if [ $? -eq 0 ]; then /sbin/modprobe ceph fi # chmod 755 /etc/sysconfig/modules/ceph.modules # reboot # lsmod | grep ceph
CentOS6:
以ip_vs为例: 临时生效 # modprobe ip_vs # lsmod | grep ip_vs 开启启动生效 # echo "modprobe ip_vs">>/etc/rc.sysinit
本文出自 “冰冻vs西瓜” 博客,请务必保留此出处http://molewan.blog.51cto.com/287340/1931188
以上是关于CentOS7及CentOS6下开机加载内核模块的主要内容,如果未能解决你的问题,请参考以下文章