linux如何查看是否打开UEFI Secure Boot
时间: 2024-01-09 14:04:38 浏览: 399
sbupdate:在Arch Linux上为UEFI安全启动生成并签名内核映像
要查看当前 Linux 系统是否启用了 UEFI Secure Boot,可以执行以下命令:
```
mokutil --sb-state
```
如果命令输出 "SecureBoot enabled",则表示当前系统启用了 UEFI Secure Boot。如果输出 "SecureBoot disabled",则表示当前系统禁用了 UEFI Secure Boot。
另外,你还可以查看系统日志来获取更多关于 Secure Boot 的信息。执行以下命令可以查看最近的 Secure Boot 相关日志信息:
```
journalctl -b | grep Secure
```
这个命令将输出最近启动时 Secure Boot 的状态和相关信息。
请注意,在某些 Linux 发行版中,检查 UEFI Secure Boot 状态可能需要 root 用户权限。
阅读全文