Bitlocker with Dislocker on Linux: Difference between revisions
From WickyWiki
mNo edit summary |
m link naar sourcecode |
||
| (One intermediate revision by the same user not shown) | |||
| Line 1: | Line 1: | ||
[[Category:Ubuntu]] | [[Category:Ubuntu]] | ||
[[Category:Ubuntu System]] | [[Category:Ubuntu System]] | ||
[[Category: | [[Category:201707]] | ||
Sourcecode: | Sourcecode: | ||
* | * https://github.com/Aorimn/dislocker | ||
Compile, Make, Install, read the file: | Compile, Make, Install, read the file: | ||
Latest revision as of 09:33, 9 October 2018
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.