Move pages under tldr, lint run.sh, update docs

This commit is contained in:
2024-02-21 13:58:43 +02:00
parent 3d653cc7e6
commit 2c475fa62d
4806 changed files with 36 additions and 35 deletions

38
tldr/linux/mokutil Normal file
View File

@@ -0,0 +1,38 @@
---
syntax: markdown
tags: [tldr, linux]
source: https://github.com/tldr-pages/tldr.git
---
# mokutil
> Configure Secure Boot Machine Owner Keys (MOK).
> Some operations, such as enabling and disabling Secure Boot or enrolling keys require a reboot.
> More information: <https://github.com/lcp/mokutil>.
- Show if Secure Boot is enabled:
`mokutil --sb-state`
- Enable Secure Boot:
`mokutil --enable-validation`
- Disable Secure Boot:
`mokutil --disable-validation`
- List enrolled keys:
`mokutil --list-enrolled`
- Enroll a new key:
`mokutil --import {{path/to/key.der}}`
- List the keys to be enrolled:
`mokutil --list-new`
- Set shim verbosity:
`mokutil --set-verbosity true`