Howto: Linux Add or Remove a Linux Kernel Modules / Drivers

by on January 24, 2007 · 15 comments· last updated at May 16, 2013

How do I add or remove hardware device driver (module) from running Linux kernel?

Linux systems comes with the modprobe command, to add and remove modules from the Linux Kernel. Please note that:

=> Under MS-Windows you use term device driver for modules.

=> Under Linux you use term modules for device drivers.

Tutorial details
DifficultyAdvanced (rss)
Root privilegesYes
Requirementsmodprobe/lsmod/modinfo utilities
=> The Linux kernel has a modular design.

=> At boot time, only a minimal resident kernel is loaded into memory.

=> If you add new hardware you need to add driver i.e. modules.

=> The modprobe command intelligently adds or removes a module from the Linux kernel

=> Usually, all Linux kernel modules (drivers) are stored in the module directory located that /lib/modules/$(uname -r) directory. To see current modules, type:
$ ls /lib/modules/$(uname -r)
Output:

build                modules.ccwmap       modules.order
initrd               modules.dep          modules.pcimap
kernel               modules.dep.bin      modules.seriomap
misc                 modules.devname      modules.softdep
modules.alias        modules.ieee1394map  modules.symbols
modules.alias.bin    modules.inputmap     modules.symbols.bin
modules.builtin      modules.isapnpmap    modules.usbmap
modules.builtin.bin  modules.ofmap        updates

Use the following command to list all drivers for various devices:
$ ls /lib/modules/$(uname -r)/kernel/drivers/
Sample outputs:

Fig.01: Device drivers on my Linux based system

Fig.01: Device drivers on my Linux based system

Task: Add a Module (driver) Called foo

Type the following command as root user:
# modprobe foo
In this example, I am loading a module called i8k, enter:
# modprobe -v i8k
Sample outputs:

insmod /lib/modules/3.5.0-30-generic/kernel/drivers/char/i8k.ko 

Find out info about loaded module

You need to use the modinfo command to see information about a Linux Kernel module. The syntax is:
# modinfo -v {module-name-here}
# modinfo i8k

Sample outputs:

Fig.02: Displaying information about a Linux Kernel module called i8k

Fig.02: Displaying information about a Linux Kernel module called i8k

Task: List all loaded modules

Use the lsmod command to show the status of modules in the Linux Kernel:
# lsmod
Sample outputs:

Module                  Size  Used by
smbfs                  75465  0
md5                     5953  1
ipv6                  284193  10
ipt_TOS                 4033  2
iptable_mangle          4545  1
ip_conntrack_ftp       74801  0
ip_conntrack_irc       74033  0
ipt_REJECT              8897  43
ipt_LOG                 8513  2
ipt_limit               4033  6
iptable_filter          4673  1
ipt_multiport           3521  4
ipt_state               3393  16
ip_conntrack           54297  3 ip_conntrack_ftp,ip_conntrack_irc,ipt_state
ip_tables              21825  8 ipt_TOS,iptable_mangle,ipt_REJECT,ipt_LOG,ipt_limit,iptable_filter,ipt_multiport,ipt_state
i2c_dev                13889  0
i2c_core               28865  1 i2c_dev
dm_mirror              32721  0
dm_mod                 68609  1 dm_mirror
button                  9313  0
battery                11465  0
ac                      6985  0
ohci_hcd               24529  0
ehci_hcd               33989  0
tg3                   109381  0
floppy                 66065  0
ext3                  137937  2
jbd                    69105  1 ext3
sata_svw               10053  3
libata                 78345  1 sata_svw
sd_mod                 19393  4
scsi_mod              141457  2 libata,sd_mod

Task: Remove a module called foo

Pass the -r option to modprobe command to remove a module, type:
# modprobe -r foo
You can also use the rmmod command, which is simple program to remove a module from the Linux Kernel:
# rmmod foo

Recommended readings
  • man pages - modinfo, lsmod, insmod, and modprobe


You should follow me on twitter here or grab rss feed to keep track of new changes.

Featured Articles:

{ 15 comments… read them below or add one }

1 Lakshman June 14, 2008 at 9:33 am

when the system is rebooted the module inside the kernel will not be present.But i want the modules to be seen permenently.what should i do.

Reply

2 Todd Weaver June 16, 2009 at 2:18 pm
3 Teryaki July 14, 2009 at 7:23 pm

Thanks alot for this, very helpful for teh newbz.

Reply

4 hamza September 12, 2009 at 12:30 pm

Thank’s first for the helpfull command , where can i get the new modules other then my OS,

Reply

5 vikas March 7, 2010 at 4:09 pm

thank tou

Reply

6 ss June 17, 2010 at 5:50 pm

thanks

Reply

7 santhosh kumar k June 28, 2011 at 7:21 am

how to build linux kernel module with new device driver module during build

Reply

8 prakash June 28, 2011 at 9:29 am

Thanks a lot for the info…:) :)

Reply

9 peter August 23, 2011 at 6:08 am

Hi there…
I am trying to remove TCP IP from a linux kernel, and want to recompile the LINUX kernel. But being a novice with the administrations of the linux (UBUNTU 10.4), I know a little about it. Agter recompilation can I again design mu own TCPIP using the C language code?
Guys please help me out…waiting for the reply .
Regards…

Reply

10 Kingston January 2, 2012 at 8:22 pm

Thanks for this very short but very clear information. That helps me to understand the concept (of add or remove module on Linux) very much.

One question remain: how do we check to know what modules are available to add on a existing system?

Thank you in advance!

Reply

11 Vivek Gite January 2, 2012 at 8:56 pm

One question remain: how do we check to know what modules are available to add on a existing system?

cd to /lib/modules/$(uname -r) directory and you can see the list of available modules (run as root):

cd /lib/modules/$(uname -r)
ls -l

The following will list all drives

find /lib/modules/$(uname -r) -type f -iname "*.ko"

To find out more info about a module called foo:

modinfo foo

Hope this helps!

Reply

12 Bahador February 8, 2012 at 6:59 am

Hi
thanks for your comments, I am trying to write a printer driver for linux, what should I do?

Please help me on this task.

Reply

13 Atul March 13, 2012 at 7:04 pm

Does anyone knows step by step guide for how to install ip_conntrack support into kernel Linux linux 2.6.35.14-106.fc14.i686 #1 SMP Wed Nov 23 13:57:33 UTC 2011 i686 i686 i386 GNU/Linux

Reply

14 Chinmaya May 2, 2012 at 10:08 am

I am unable to remove the following modules after issuing the commands.
$ rmmod usbhid and
$rmmod hid..

After issuing the commands the modules are not shown in “lsmod” but as soon as a device is added they again get loaded.

Any suggestions…

Reply

15 Martin January 7, 2013 at 2:25 am

thanks, very clear article.

Reply

Leave a Comment

You can use these HTML tags and attributes for your code and commands: <strong> <em> <ol> <li> <u> <ul> <kbd> <blockquote> <pre> <a href="" title="">

Tagged as: , , , , , , , , , ,

Previous Faq:

Next Faq: