add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

20
pages.zh/linux/kexec.md Normal file
View File

@@ -0,0 +1,20 @@
# kexec
> 直接重启到一个新内核。
> 更多信息:<https://manned.org/kexec>。
- 加载一个新内核:
`kexec -l {{path/to/kernel}} --initrd={{path/to/initrd}} --command-line={{arguments}}`
- 使用当前启动参数加载一个新内核:
`kexec -l {{path/to/kernel}} --initrd={{path/to/initrd}} --reuse-cmdline`
- 执行当前加载的内核:
`kexec -e`
- 卸载当前 kexec 目标内核:
`kexec -u`