说明:最近感觉记忆力下降的厉害,好多以前在脑海固话的知识点,都会出现断片的现象,所以选择记录下常用的知识点,备忘。
CentOS7:
1
2
3
4
5
6
7
8
9
10
11
12
|
以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:
1
2
3
4
5
6
|
以ip_vs为例:
临时生效
# modprobe ip_vs
# lsmod | grep ip_vs
开启启动生效
# echo "modprobe ip_vs">>/etc/rc.sysinit
|
本文转自 冰冻vs西瓜 51CTO博客,原文链接:http://blog.51cto.com/molewan/1931188,如需转载请自行联系原作者