centos7 添加开机自动加载模块 方法

Posted david-cloud

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了centos7 添加开机自动加载模块 方法相关的知识,希望对你有一定的参考价值。

在CentOS7启动时自动加载内核模块

添加相应模块  脚本

[[email protected] ~]# cat /etc/sysconfig/modules/kvm.modules
#!/bin/bash

/sbin/modinfo -F filename kvm > /dev/null 2>&1
if [ $? -eq 0 ]; then
    /sbin/modprobe kvm
fi

 

[[email protected] ~]# chmod +x kvm.modules

 

重启测试

 

以上是关于centos7 添加开机自动加载模块 方法的主要内容,如果未能解决你的问题,请参考以下文章

CentOS7 开机自动加载 iptables 规则

centos7中设置服务开机自启的两种方法

centos怎样将服务加入开机自动启动

CentOS7 设置开机自启动脚本

CentOS7及CentOS6下开机加载内核模块

CentOS7添加开机启动服务/脚本(延用CentOS6方法)