``` !/bin/bash currentTime=$(date +"%Y %m %d_%H:%M:%S") echo "blacklist i2c_piix4" /etc/modprobe.d/blacklist.conf echo "blacklist pcspkr" /etc/modprob ...
分类:
其他好文 时间:
2018-10-01 01:03:12
阅读次数:
442
临时解决 echo 100 > /sys/module/ipmi_si/parameters/kipmid_max_busy_us 永久生效配置/etc/modprobe.d/ipmi.conf 中加入options ipmi_si kipmid_max_busy_us=100 ...
分类:
其他好文 时间:
2018-09-16 16:09:35
阅读次数:
349
V1.11.1https://github.com/kubernetes/kubernetes/releases/tag/v1.11.1环境准备:系统:centos7.2.1511[root@master~]#cat/etc/redhat-releaseCentOSLinuxrelease7.2.1511(Core)关闭防火墙,iptalbes,firewalld设置时间同步systemctlst
分类:
其他好文 时间:
2018-09-14 10:54:59
阅读次数:
693
``` #!/bin/bash # echo "blacklist i2c_piix4" >> /etc/modprobe.d/blacklist.conf # echo "192.168.127.20 ol6.localdomain ol6" >> /etc/hosts sed -i '/UseD... ...
分类:
数据库 时间:
2018-09-10 13:27:10
阅读次数:
187
第二章 快速参考 本节中出现的条目会以它们在文中出现的顺序列出: insmod modprobe rmmod 用来装载模块到正运行的内核和移除模块的用户空间工具: #include <linux/init.h> module_init(init_function); module_exit(clea ...
分类:
其他好文 时间:
2018-09-09 20:00:01
阅读次数:
123
1 物理网卡配置2 bond0网卡配置3 查看bond0网卡状态 摘要: centos6.x下使用双网卡配置bond0, centos6 bond配置不需要在/etc/modprobe 中定义bond 直接在网卡中定义BONDING_OPTS 即可,例如bond0: BONDING_OPTS="mo ...
分类:
其他好文 时间:
2018-09-05 21:34:41
阅读次数:
584
一.网卡绑定bond0配置mode=0,平衡负载模式,需要配置与网卡相连的交换机采取聚合模式。配置mode=1,主备模式,无需配置交换机配置mode=6,平衡负载模式,但是不必配置交换机。#modprobe--first-timebonding#modinfobonding#systemctlstopNetworkManager#systemctldisableNetworkManager#cd/
分类:
其他好文 时间:
2018-08-06 15:17:04
阅读次数:
454
1、modprobe usb-storage #初始化挂载新模块2、然后插入 u盘3、fdisk -l #进行查看U盘盘符,sdb或者sdb14、mount /dev/sdb1 /mnt #将U盘进行挂载到/mnt目录下5、cd /mnt cp /mnt/test.sh / #进入相关目录,进行拷贝到相关目录
分类:
系统相关 时间:
2018-08-01 17:17:02
阅读次数:
146
linux加载/卸载驱动有两种方法。 1.modprobe 注:在使用这个命令加载模块前先使用depmod -a命令生成modules.dep文件,该文件位于/lib/modules/$(uname -r)目录下; modprobe命令智能地向内核中加载模块或者从内核中移除模块,可载入指定的个别模块 ...
分类:
系统相关 时间:
2018-06-27 23:57:23
阅读次数:
339