LoginSignup
22
26

More than 5 years have passed since last update.

BitLocker 暗号化されたディスクを Linux でマウントする

Last updated at Posted at 2015-09-12

BitLockerによって暗号化されたディスクを、Linuxでマウント(読取り専用)する手順の備忘です。パスワードをクラックする方法ではありません。前提として、デバイスが正常に接続されていて、 lsblkfdisk -l 等のコマンドでデバイスファイルを特定できている必要があります。復号には dislockerfuse-dislocker パッケージが必要です。

手順は、まずディスクを復号して dislocker-file という名前のファイルを取得し、これをループデバイスとしてマウントします。復号と復号後とでマウントは二度必要です。

  1. 復号
    対象のデバイスファイル、復号方法、ループデバイスのマウントポイントを指定して dislocker-file を取得します。ここではデバイスファイルを /dev/sdx とします。

    $ sudo dislocker -v -V /dev/sdx -u{*パスワード*} -- /media/removable1
    

    正常に複号できていれば、マウントポイントに dislocker-file があることを確認できます。

    $ sudo file /media/removable1/dislocker-file
    /media/removable1/dislocker-file: DOS/MBR boot sector, ...
    
  2. マウント
    復号して得られた dislocker-file をループデバイスとしてマウントします。

    $ sudo mount -o loop,ro /media/removable1/dislocker-file /media/removable2/
    

参考

22
26
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
22
26