When I try to boot from my main drive, I get this error:
That message says "Inodes that were part of a corrupted orphan linked list found" so I tried this - https://askubuntu.com/questions/651577/dev-sda1-inodes-that-were-part-of-a-corrupted-orphan-linked-list-found - and got:
:~$ sudo fsck /dev/sda5
fsck from util-linux 2.20.1
fsck: fsck.crypto_LUKS: not found
fsck: error 2 while executing fsck.crypto_LUKS for /dev/sda5
My problem seems similar to this - How to resolve e2fsck Superblock problem? - except that solution doesn't work for me.
When I try that solution (running on a secondary drive) :
:~$ sudo e2fsck -b 163840 /dev/sda5
e2fsck 1.42.9 (4-Feb-2014)
e2fsck: Invalid argument while trying to open /dev/sda1
The superblock could not be read or does not describe a valid ext2/ext3/ext4
filesystem. If the device is valid and it really contains an ext2/ext3/ext4
filesystem (and not swap or ufs or something else), then the superblock
is corrupt, and you might try running e2fsck with an alternate superblock:
e2fsck -b 8193 <device>
or
e2fsck -b 32768 <device>
/dev/sda5 contains a crypto_LUKS file system
I'm not 100% sure the drive being encrypted is the causal reason that solution isn't working; maybe it's just not. But what other approaches can I take to solve this?
Let me know if there's any more information I can provide.
