RMMOD(8) rmmod RMMOD(8)NAME
rmmod - Simple program to remove a module from the Linux Kernel
SYNOPSIS
rmmod [-f] [-s] [-v] [modulename]
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)).
-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(8), insmod(8), lsmod(8), modinfo(8)AUTHORS
Jon Masters <jcm@jonmasters.org>
Developer
Lucas De Marchi <lucas.de.marchi@gmail.com>
Developer
kmod 01/28/2018 RMMOD(8)
Check Out this Related Man Page
RMMOD(8) rmmod RMMOD(8)NAME
rmmod - Simple program to remove a module from the Linux Kernel
SYNOPSIS
rmmod [-f] [-s] [-v] [modulename]
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)).
-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(8), insmod(8), lsmod(8), modinfo(8)AUTHORS
Jon Masters <jcm@jonmasters.org>
Developer
Lucas De Marchi <lucas.de.marchi@gmail.com>
Developer
kmod 01/28/2018 RMMOD(8)
Hello Masters
In Solaris8 environment.
I have a 4 Gb binary file. I want to remove 4160 bytes from the beginning of the file and keep the rest. What is your recommended commands or solutions. Speed of the operation matters also.
Thanks for your advises.
Cheers
Reza (1 Reply)
Masters,
I have inserted a linux module which controlls the bandwidth of LAN . Just when I insmod'ed kernel panicked. When restarted I am stunned to find out that many of my other modules are missing. How can insertion of one module removes other modules . I use 2.6.9 kernel on a redhat 3.4.3... (1 Reply)
In Linux if you want to get rid of the PC speaker (beep!) without rebooting you can type
rmmod pcspkr
I'm looking for a way to remove (if possible) the BSD equivalent of the "pcspkr" module.
I scrolled quickly through GENERIC and didn't see any entries that looked conspicuously like the... (2 Replies)
Hello,
Who actually wrote Professional Linux Programming of Wrox publication as there are two different sets of writers, one set consists of Jon Masters and Richard Blum and another set of writers is Neil Mathew with lots of other writers. Plz resolve it. I'm really confused.
Regards.. (0 Replies)
Hello Linux forum!
I am working on an older Red hat Linux version(kernel) 2.4.21 and I have compiled the kernel and I select it on startup, but I get the following errors:
Mounting Local Filesystems: Modprobe: modprobe: Can't locate module usbcore
modprobe: modprobe: Can't locate module udf... (1 Reply)
I am writing a program, and want to have the option for the program to
continue execution even should things go wrong. I use an option --ignore-errors.
The problem is what I do when an error occurs, set the values to zero, or fill them up with some values, for example taken from a simple unit... (3 Replies)
I am making few changes inside modprobe.d directory, now there are two options to make them effective
1) rmmod module, make changes and modprobe module
2) dracut -f
I was wondering what's the difference between two, in terms of result, dracut makes kernel image again though and the other unplug... (0 Replies)