Connecting Tech Pros Worldwide Forums | Help | Site Map

modprobe

Member
 
Join Date: Feb 2008
Posts: 88
#1: Apr 23 '08
Hi All,

Can any one explain the detail use of modprob ti install or delete a kernel module.

How effective is it to change an existing module.

micmast's Avatar
Familiar Sight
 
Join Date: Mar 2008
Location: Belgium
Posts: 136
#2: Apr 24 '08

re: modprobe


modules are small parts of the kernel that can be plugged in or removed on the fly

insmod <module>: this will insert the module into the kernel
rmmod <module>: this will remove the module from the kernel
lsmod: this will show all active modules

you can automatically add modules to the kernel by adding it to the /etc/modules file (this file can be different depending on distro, this is debian related)
Reply