Update cheatsheets

This commit is contained in:
ivuorinen
2025-08-08 00:22:13 +00:00
parent 9c36a48bd3
commit 3be72c1548
7 changed files with 76 additions and 8 deletions

View File

@@ -0,0 +1,21 @@
---
syntax: markdown
tags: [tldr, linux]
source: https://github.com/tldr-pages/tldr.git
---
# update-initramfs
> Manage initramfs.
> More information: <https://manned.org/update-initramfs>.
- Create a new initramfs (use `all` for all installed kernel versions):
`sudo update-initramfs -c -k {{kernel_version}}`
- Update an existing initramfs:
`sudo update-initramfs -u`
- Remove an existing initramfs (be careful when using `all` for `kernel_version`):
`sudo update-initramfs -d -k {{kernel_version}}`