Page 1 of 1

dislocker-fuse-0.5.2

Posted: Sat 06 Feb 2016, 16:10
by goingnuts
dislocker-fuse - Read/write BitLocker encrypted volumes under Linux.
Static build of dislocker-0.5.2 using uclibc, polarssl-1.2.17 and fuse-2.6.0.
Only tested with USB-stick encrypted with BitLockerToGo.exe from Windows 7 but should work with Windows Vista and 8 encrypted partitions as well.
Example - USB-stick is at /dev/sdg1:

Code: Select all

mkdir - p /mnt/dislocker /tmp/dislocker	#create two mountpoints
dislocker-fuse -V /dev/sdg1 -uYOUR_PASWORD -- /mnt/dislocker
#you might get an error with getcwd - but it seems to do no harm.
ls /mnt/dislocker	#verify that the dislocker-file is present
mount -o loop /mnt/dislocker/dislocker-file /tmp/dislocker	#mount the dislocker-file
ls /tmp/dislocker	#verify that you have access to the unlocked volume
#you can unmount /tmp/dislocker
umount /tmp/dislocker
#but might need to kill dislocker-fuse to unmount /mnt/dislocker
killall dislocker-fuse

Posted: Sat 06 Feb 2016, 16:50
by jamesbond
good find, goingnuts! Image