From c9b9426df64f5a0c8260cbb5f711ae5e6dcb7f4d Mon Sep 17 00:00:00 2001 From: Saikat Sengupta <41847480+saikatsgupta@users.noreply.github.com> Date: Fri, 7 Oct 2022 11:17:17 +0530 Subject: [PATCH] kmutil: add page (#8695) --- pages/osx/kmutil.md | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 pages/osx/kmutil.md diff --git a/pages/osx/kmutil.md b/pages/osx/kmutil.md new file mode 100644 index 0000000000..5cc09eae47 --- /dev/null +++ b/pages/osx/kmutil.md @@ -0,0 +1,28 @@ +# kmutil + +> Utility for managing kernel extensions (kexts) and kext collections on disk. +> More information: . + +- Find kexts available on the operating system: + +`kmutil find` + +- Display logging information about the Kernel Management sub-system: + +`kmutil log` + +- Inspect and display a kext collection's contents according to the options provided: + +`kmutil inspect {{options}}` + +- Check the consistency of kext collections against each other: + +`kmutil check` + +- Dump kernelmanagerd state for debugging: + +`sudo kmutil dumpstate` + +- Load one or more extensions based on the bundle specified at this path in the results: + +`kmutil load --bundle-path {{path/to/extension.kext}}`