Linux Commands Examples

A great documentation place for Linux commands

rmmod

Simple program to remove a module from the Linux Kernel


see also : modprobe - insmod - lsmod - modinfo

Synopsis

rmmod [-f] [-w] [-s] [-v] [modulename]


add an example, a script, a trick and tips

: email address (won't be displayed)
: name

Step 2

Thanks for this example ! - It will be moderated and published shortly.

Feel free to post other examples
Oops ! There is a tiny cockup. A damn 404 cockup. Please contact the loosy team who maintains and develops this wonderful site by clicking in the mighty feedback button on the side of the page. Say what happened. Thanks!

examples

0
source
            
rmmod mycdev
0
source
            
rmmod cmemk
rmmod edmak
rmmod irqk
lsmod
0
source
            
rmmod lisp
0
source
            
rmmod resumefromintr_rt
rmmod resumefromintr
rmmod rtai_rtdm
rmmod rtai_msg
rmmod rtai_sem
rmmod rtai_sched
rmmod rtai_sched
rmmod rtai_hal
0
source
            
rmmod heartbeat_rt
rmmod heartbeat
rmmod semtest_rt
rmmod semtest
rmmod mutextest_rt
rmmod mutextest
rmmod mutextest
rmmod rtai_rtdm
../../remod

description

rmmod is a trivial program to remove a module (when module unloading support is provided) from the kernel. Most users will want to use modprobe(8) with the -r option instead.

options

-v --verbose

Print messages about what the program is doing. Usually rmmod prints messages only if something goes wrong.

-f --force

This option can be extremely dangerous: it has no effect unless CONFIG_MODULE_FORCE_UNLOAD was set when the kernel was compiled. With this option, you can remove modules which are being used, or which are not designed to be removed, or have been marked as unsafe (see lsmod(8)).

-w --wait

Normally, rmmod will refuse to unload modules which are in use. With this option, rmmod will isolate the module, and wait until the module is no longer used. Nothing new will be able to use the module, but it's up to you to make sure the current users eventually finish with it. See lsmod(8)) for information on usage counts.

-s --syslog

Send errors to syslog instead of standard error.

-V --version

Show version of program and exit.

copyright

This manual page originally Copyright 2002, Rusty Russell, IBM Corporation. Maintained by Jon Masters and others.


see also

modprobe , insmod , lsmod modinfo


authors

Jon Masters <jcm[:at:]jonmasters[:dot:]org>

Developer

Lucas De Marchi <lucas.demarchi[:at:]profusion[:dot:]mobi>

Developer

How can this site be more helpful to YOU ?


give  feedback