美文网首页
纳尼?休眠不能?!

纳尼?休眠不能?!

作者: AlphaHinex | 来源:发表于2020-09-20 12:17 被阅读0次

    原文地址:https://alphahinex.github.io/2020/09/20/unable-to-hibernate/

    cover

    description: "宇宙不重启,我们不休息!"
    date: 2020.09.20 10:26
    categories:
    - Linux
    tags: [Linux]
    keywords: Linux, hibernate, UEFI, Secure Boot


    现象

    CentOS 7,systemctl hibernate 休眠失败,按照提示使用 journalctl -xe 查看具体原因,得到类似如下内容的日志:

    Feb 09 14:18:14 pike systemd[1]: Starting Sleep.
    Feb 09 14:18:14 pike systemd[1]: Reached target Sleep.
    Feb 09 14:18:14 pike systemd[1]: Starting Hibernate...
    Feb 09 14:18:14 pike systemd-sleep[2284]: Failed to write mode to /sys/power/disk: Operation not permitted
    Feb 09 14:18:14 pike systemd[1]: systemd-hibernate.service: main process exited, code=exited, status=1/FAILURE
    Feb 09 14:18:14 pike systemd[1]: Failed to start Hibernate.
    Feb 09 14:18:14 pike systemd[1]: Dependency failed for Hibernate.
    Feb 09 14:18:14 pike systemd[1]: Service sleep.target is not needed anymore. Stopping.
    Feb 09 14:18:14 pike systemd[1]: Unit systemd-hibernate.service entered failed state.
    Feb 09 14:18:14 pike systemd[1]: Stopping Sleep.
    Feb 09 14:18:14 pike systemd[1]: Stopped target Sleep.
    

    查看 /sys/power/disk 提示不可使用。

    $ cat /sys/power/disk
    [disabled]
    

    解决

    查找了一些资料(详见参考资料),发现是设备启用了 Secure Boot 导致的。

    在 BIOS 设置中,进入 SecurityBoot 等分类下,将 Secure Boot 关闭(Enabled 改为 Disabled)即可。

    原因

    从参考资料中了解到,休眠是将系统内存状态进行快照并保存到磁盘中,之后切断系统电源;在唤醒时,再将磁盘中的内存快照恢复到内存中,以恢复休眠时的状态。

    而当前缺乏一种手段保证唤醒时磁盘中保存的内容跟休眠时存入的内容一致,这就产生了一定的安全隐患。

    Linux 内核中包含了一种锁定(lockdown)模式,当内核版本支持该特性,并且检测到系统启用了 Secure Boot 时,会自动进入锁定模式,进而导致无法进行休眠。

    参考资料

    相关文章

      网友评论

          本文标题:纳尼?休眠不能?!

          本文链接:https://www.haomeiwen.com/subject/tgquyktx.html