Bitlocker with Dislocker on Linux: Difference between revisions

From WickyWiki
Created page with "Category:Ubuntu Category:Ubuntu System Category:201309 Sourcecode: * http://www.hsc.fr/ressources/outils/dislocker/download/ Compile, Make, Install, read the fil..."
 
mNo edit summary
Line 38: Line 38:
sudo rmdir /dev/dislocker0
sudo rmdir /dev/dislocker0
</syntaxhighlight>
</syntaxhighlight>
==Writing==
Writing should be possible, omit the dislocker '-r' switch and you can write-access the medium. You need to be administrator though (sudo). All this at your own risk of course.


==See also==
==See also==

Revision as of 20:41, 20 August 2017


Sourcecode:

Compile, Make, Install, read the file:

  • INSTALL.md

Comes with a man manual:

man dislocker

Mount Bitlocker partition:

#list partitions, find your partition, in this example /dev/sdd1 is used
sudo lsblk -o NAME,FSTYPE,SIZE,MOUNTPOINT,LABEL

#dislocker device:
sudo mkdir /dev/dislocker0
sudo dislocker -r -V /dev/sdd1 --user-password -- /dev/dislocker0

#mount bitlocker partition:
sudo mkdir /media/DRIVE
sudo mount -o loop /dev/dislocker0/dislocker-file /media/DRIVE

Umount & cleanup

sudo umount /media/DRIVE
sudo umount /dev/dislocker0
sudo rmdir /media/DRIVE
sudo rmdir /dev/dislocker0

Writing

Writing should be possible, omit the dislocker '-r' switch and you can write-access the medium. You need to be administrator though (sudo). All this at your own risk of course.

See also