今天我尝试将 Ubuntu 13.04 升级到 13.10,升级过程中系统开始出现问题,最后完全死机。我不得不重启电脑,现在电脑根本无法启动。
当我当前启动时,它会带我进入 GRUB 菜单,我可以选择正常启动,也可以选择以旧版本启动。我尝试了几件事,如下所示,但无论如何,当我尝试完成启动 Ubuntu 时,我收到以下错误:
Filesystem check or mount failed. A maintenance shell will now be
started. CONTROL-D will terminate this shell and continue booting
after re-trying filesystems. Any further errors will be ignored
root@ubuntu-computername:~#
我很开心fsck -f
,一切看起来都正确,没有报告任何错误。并且它通过了所有 5 项检查。
如果我运行fdisk -l
则会得到以下信息:
Disk /dev/sda: 320.1 GB, 320072933376 bytes 255 heads, 63
sectors/track, 38913 cylinders, total 625142448 sectors Units =
sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 4096
bytes / 4096 bytes Disk identifier: 0x00010824
Device Boot Start End Blocks Id System
/dev/sda1 * 2048 608456703 304227328 83 Linux
/dev/sda2 608458750 625141759 8341505 5 Extended Partition 2 does not start on physical sector boundary.
/dev/sda5 608458752 625141759 8341504 82 Linux swap / Solaris
Disk /dev/sdb: 320.1 GB, 320072933376 bytes 255 heads, 63
sectors/track, 38913 cylinders, total 625142448 sectors Units =
sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512
bytes / 4096 bytes I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disk identifier: 0x0fb4b7e8
Device Boot Start End Blocks Id System
/dev/sdb1 8192 625139711 312565760 7 HPFS/NTFS/exFAT
我正在考虑在另一个磁盘上安装一个新操作系统,该磁盘上目前没有任何内容,然后尝试从旧磁盘上抓取我的数据(幸好我没有加密文件)。
我真正的问题是:我可以挽救这个 Ubuntu 安装吗,还是我应该放弃并重新安装?
答案1
我想我已经根据在这里找到的一篇文章对它进行了整理:安装过程中断电后根文件系统检查失败。
每次从维护 shell 运行一行:
mount -o remount,rw /
dpkg --configure -a
mount -o remount,ro /
sync
reboot
对我来说有用,但只得到了前两行,无法完成其余部分,因为驱动器很忙。重新启动后,它似乎现在可以正常工作了。