新笔记本电脑使用一周后就无法启动了

新笔记本电脑使用一周后就无法启动了

到目前为止,我总是可以通过阅读已经提出的问题来解决我的问题,但这次我找不到任何先例案例,因此我们开始吧:

我圣诞节收到了一台新笔记本电脑,立即安装了 Ubuntu 13.10 并将窗口管理器更改为 i3。没有双启动,没什么花哨的,只有 Ubuntu 和 i3。今天它突然停止启动,之前它工作正常了大约一周。它进入了 Ubuntu 加载屏幕,加载动画也正常,但我等了几分钟,什么也没发生。

我检查了启动选项,它们没问题。除此之外,我不知道该测试什么,也不知道问题可能出在哪里。有什么想法吗?

编辑:我完全忘记了尝试启动恢复模式的选项。没有解决问题,但现在我知道,它尝试做的最后一件事是

resume: libgcrypt version 1.5.0

此时屏幕会冻结大约两三分钟。然后显示:

resume: Could not stat hte resume device file '/dev/dm-0'
        Please type in the full path name to try again or press ENTER to boot the system:

此后它就没有任何反应了。

答案1

做了一些进一步的搜索,找到了解决方案。显然韋斯特有时会导致此问题/home 已加密。解决方案是启动实时系统,以 root 身份挂载 /home 并卸载 uswsusp。分步解决方案可在此处找到这里

安装全新的 Ubuntu 13.04 后,我注意到笔记本电脑在盖子关闭时不再进入休眠状态。

我安装了 hibernate 包(apt-get install hibernate)然后运行sudo hibernate

这导致笔记本电脑无法启动。无法通过恢复模式规避的 initramfs 问题:

resume: libcrypt version: 
resume: could not stat the resume device file /dev/dm-0
Please type in the full path name to try again or press ENTER to boot the system:

按 Enter 键没有任何作用,唯一有效的按键是 ctrl+alt+del

经过谷歌搜索后,我尝试了以下方法:

  1. 启动到 ubuntu live cd/usb——和我今天早些时候安装 ubuntu 时用的一样
  2. 挂载我的系统并且 chroot 到其中:

    mkdir /mnt/temp/
    mount /dev/sda1 /mnt/temp/
    cp /etc/resolv.conf /mnt/temp/etc/resolv.conf
    chroot /mnt/temp/
    mount /proc
    #optional commands: not sure what caused the issue
    apt-get purge uswsusp
    apt-get purge hibernate
    dpkg-reconfigure initramfs-tools
    
  3. 重新启动 live cd 并查看是否有效。

如果需要,请将其替换/dev/sda1为包含 Ubuntu 根文件系统的分区。

相关内容