Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

kextstat(8) [mojave man page]

KEXTSTAT(8)						    BSD System Manager's Manual 					       KEXTSTAT(8)

NAME
kextstat -- display status of loaded kernel extensions (kexts) SYNOPSIS
kextstat [-a] [-h] [-k] [-l] [-b identifier] ... DESCRIPTION
The kextstat utility displays the status of any kexts currently loaded in the kernel. The following information is shown for each loaded kext: Index The load index of the kext (used to track linkage references). Gaps in the list indicate kexts that have been unloaded. Refs The number of references to this kext by others. If nonzero, the kext cannot be unloaded. Address The address in kernel space where the kext has been loaded. Size The number of bytes of kernel memory that the kext occupies. If this is zero, the kext is a built-in part of the kernel that has a record as a kext for resolving dependencies among kexts. Wired The number of wired bytes of kernel memory that the kext occupies. Architecture (if the -a option is used) The architecture of the kext. Name The CFBundleIdentifier of the kext. (Version) The CFBundleVersion of the kext. <Linked Against> The index numbers of all other kexts that this kext has a reference to. OPTIONS
These options are available: -a, -arch Print the architecture of the kext. -b identifier, -bundle-id identifier Display the status of only the kext with the given bundle identifier. This option trumps the -no-kernel option; if both are given and a kernel component is specified, its information is shown. -h, -help Print a help message describing each option flag and exit with a success result, regardless of any other options on the command line. -k, -no-kernel Don't show information for built-in components of the kernel. -l, -list-only Print the list of loaded kexts only and omit the header (useful for running output through text-analysis tools). -s, -sort Sort the list by load address. DIAGNOSTICS
The kextstat utility exits with a status of 0 on success and with a nonzero status if an error occurs. SEE ALSO
kextcache(8), kextd(8), kextload(8), kextunload(8), kextutil(8) Darwin March 13, 2014 Darwin

Check Out this Related Man Page

KEXTUNLOAD(8)						    BSD System Manager's Manual 					     KEXTUNLOAD(8)

NAME
kextunload -- terminates objects and unloads code associated with a kernel extension SYNOPSIS
kextunload [-b bundle_id] ... [-c class_name] ... [-h] [-p] [ -v [0-6] | -q ] [ extension ] ... DESCRIPTION
The kextunload program is used to terminate and unregister I/O Kit objects associated with a kernel extension (kext) and to unload the code and personalities for that kext. In order to unload a kext kextunload must be invoked as the superuser. If another loaded kext has a dependency on a kext being unloaded, the unload will fail. You can determine whether a kext has dependents using the kextstat(8) tool. kextunload is a formal interface for unloading kexts in the Darwin OS and in Mac OS X. Software and installers can rely on its presence and invoke it in order to unload kexts. The arguments and options available are these: extension The pathname of a kext to unload. All instances of classes associated with the kext are terminated, and personalities and code are unloaded from the kernel. -b bundle_id Unload code and personalities for the kext whose CFBundleIdentifier is bundle_id. -c class_name Terminate all instances of class class_name if possible but do not unload code or personalities. New load requests for devices driven by these instances may result in the same class being instantiated at any time. -h Print a help message describing each option flag. -m bundle_id Same as -m (remains for backward compatibility). -p Don't remove personalities when unloading (unnecessary when using the -c option). New load requests for devices driven by the kext may result in the same kext being loaded at any time. -q Quiet mode; print no informational or error messages. This option excludes -v. -v [0-6] Verbose mode; print information about the kext scanning and loading process (note that this is generally not useful when unloading). See the man page for kextload(8) to see what each verbose level prints. This option excludes - q . DIAGNOSTICS
kextunload exits with a zero status upon success, or prints an error message and exits with a nonzero status upon failure. An error when multiple kexts are being unloaded causes kextunload to exit immediately, so that some kexts may remain unloaded even if they could have been unloaded without error. BUGS
The results of unload requests as given by the kernel don't allow for determining the reason for a failure, such as that the kext wasn't loaded or that another kext has a dependency on it. You can check these conditions using kextstat(8). SEE ALSO
kextcache(8), kextd(8), kextload(8), kextstat(8) Darwin April 17, 2002 Darwin
Man Page