From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail.saout.de ([127.0.0.1]) by localhost (mail.saout.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 5_U5miVS7tG0 for ; Mon, 10 Jun 2013 20:21:06 +0200 (CEST) Received: from mail-ea0-x235.google.com (mail-ea0-x235.google.com [IPv6:2a00:1450:4013:c01::235]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mail.saout.de (Postfix) with ESMTPS for ; Mon, 10 Jun 2013 20:21:06 +0200 (CEST) Received: by mail-ea0-f181.google.com with SMTP id a15so3212362eae.12 for ; Mon, 10 Jun 2013 11:21:05 -0700 (PDT) Message-ID: <51B6190D.5020501@gmail.com> Date: Mon, 10 Jun 2013 20:21:01 +0200 From: Milan Broz MIME-Version: 1.0 References: In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Subject: Re: [dm-crypt] No key available with this passphrase List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Packets Cc: dm-crypt@saout.de On 06/10/2013 05:42 PM, Packets wrote: > I also downloaded the cryptsetup tarball and use the keyslot_checker script. Here is the output. > > nelson@kazekage:~/Downloads/cryptsetup-1.6.1/misc/keyslot_checker$ sudo ./chk_luks_keyslots /dev/sdb1 > > parameters (commandline and LUKS header): > sector size: 512 > threshold: 0.900000 > > ./chk_luks_keyslots: relocation error: ./chk_luks_keyslots: symbol crypt_keyslot_area, version CRYPTSETUP_1.0 not defined in file libcryptsetup.so.4 with link time reference > nelson@kazekage:~/Downloads/cryptsetup-1.6.1/misc/keyslot_checker$ > > Anyone familiar with the error? It should use local compiled library (system libcryptsetup seems to be too old). To properly run locally compiled keyslot checker tool try cd ~/Downloads/cryptsetup-1.6.1/misc/keyslot_checker sudo LD_LIBRARY_PATH="../../lib/.libs;$LD_LIBRARY_PATH" ./chk_luks_keyslots /dev/sdb1 Milan