Linux 设备驱动以Kernel Module形式存在,Linux Kernel Module可以动态加载到内核中。

 

- lsmod  Show the status of modules in the Linux Kernel

 

- modinfo  Show information about a Linux Kernle module

 

- modprobe  Add and Remove modules from the Linux Kernel

 

示例1:

- 加载ip_vs模块(重启后失效)

$ modprobe -v ip_vs
$ lsmod | grep ip_vs
ip_vs                 145497  0 
nf_conntrack          139224  7 ip_vs,nf_nat,nf_nat_ipv4,nf_nat_ipv6,xt_conntrack,nf_conntrack_ipv4,nf_conntrack_ipv6
libcrc32c              12644  4 xfs,ip_vs,nf_nat,nf_conntrack

 

- 卸载ip_vs模块

$ modprobe -v -r ip_vs

 

- 开机自动加载

// 将模块加载命令放入 /etc/sysconfig/modules 路径下
$ cat > /etc/sysconfig/modules/ipvs.modules <<EOF > /sbin/modprobe ip_vs > EOF

 

相关文章:

  • 2022-12-23
  • 2022-01-19
  • 2022-12-23
  • 2021-05-19
  • 2021-09-29
  • 2021-07-25
  • 2021-09-29
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-09-04
  • 2021-11-05
  • 2022-01-19
相关资源
相似解决方案