kldload
kldload is a user-space utility in FreeBSD and related BSD systems that loads a kernel module into a running kernel. A module is typically a loadable kernel object (.ko) that adds drivers, file system support, or other functionality without requiring a reboot. Modules are usually stored under /boot/kernel or /boot/modules and are built for the system’s kernel ABI.
When invoked, kldload resolves the module’s dependencies and loads any prerequisite modules before loading the requested
Usage generally requires root privileges. A module can be loaded by specifying its file path, for example,
Unloading a module is performed with kldunload, which must consider active references to the module’s resources
See also: kldstat, kldunload, and the kld(8) subsystem that manages dynamic kernel loading and unloading.