You are not logged in.
Pages: 1
hi all
is there any good possibility for checking luks encrypted external drives with fsck?
filesystem is ext3 --> i tried fsck.ext3 /dev/sdb but it didn't work
thx in advance
arch0r
Offline
You have to run fsck on the virtual device you create in /dev/mapper/:
the one you create with
cryptsetup luksOpen /dev/sdb1 THENAME
Of course you can't fsck /dev/sdb: first of all it's the name of the disk, not the partition you want to check,
secondly being encrypted fsck have no idea what it contains.
At least I think, since I never used encryption.
Last edited by carlocci (2008-06-14 22:49:29)
Offline
thx a lot, worked
fsck.ext3 /dev/mapper/hd
Offline
Pages: 1