我无法启动 14.04,但可以从 15.10 分区启动:
~$ sudo fsck.ext4 -v /dev/mapper/vgcrypt-lvroot
e2fsck 1.42.12 (29-Aug-2014)
/dev/mapper/vgcrypt-lvroot contains a file system with errors, checkforced.
Pass 1: Checking inodes, blocks, and sizes
Error reading block 109051936 (Attempt to read block from filesystem resulted in short read) while getting next inode from scan. Ignore error<y>? no
Error while scanning inodes (27000833): Can't read next inode
e2fsck: aborted
~$ sudo cryptsetup luksDump /dev/sda8
LUKS header information for /dev/sda8
Version: 1
Cipher name: aes
Cipher mode: xts-plain64
Hash spec: sha1
Payload offset: 4096
MK bits: 512
MK digest: 66 13 1d f8 94 bf 70 a4 aa 37 ad 88 d8 ab fd b2 5f 5a 09 77
MK salt: 43 66 df b3 d5 7a 6d bb b8 29 e6 b5 40 65 ca 9e
ee ae 20 63 f1 ad 93 ab d7 08 57 8c 59 68 20 1b
MK iterations: 39125
UUID: 774e46b0-8c8f-49b9-aea9-b5e7ae1a2006
Key Slot 0: ENABLED
Iterations: 154031
Salt: d9 f5 4d f1 62 c7 85 b1 00 4b fd 83 b3 b4 91 aa
d4 c7 1c dc 1d 5e 26 31 a2 28 71 45 86 61 18 97
Key material offset: 8
AF stripes: 4000
Key Slot 1: DISABLED
Key Slot 2: DISABLED
我还能做些什么来修复我的 14.04 吗?或者我必须重新安装?
答案1
不,最好的做法是从实时 DVD 启动,确保卸载所有磁盘并运行:
sudo fsck /dev/sda8
当要求Force rewrite <y>?
输入y
或时yes
。
(顺便说一下,我假设 sda8 在你的第二条消息中,如果不是 sda8,请更改为你需要的;你可以-y
在命令中添加一个,这样你就不需要确认所有问题)
如果没有显示任何其他错误,请重新执行
sudo fsck.ext4 -v /dev/mapper/vgcrypt-lvroot
就像你做的一样。如果第一个命令报告任何错误或不规则,请将其添加到问题中。
补充评论:
- 检查磁盘的健康状况。也许没什么大不了的,但像这样的错误总是让我怀疑硬盘出了问题。