Merge pull request #915 from d33tah/cryptsetup

Add cryptsetup.md.
This commit is contained in:
Leandro Ostera 2016-06-21 15:21:15 +02:00 committed by GitHub
commit 991d765b72

11
pages/linux/cryptsetup.md Normal file
View File

@ -0,0 +1,11 @@
# cryptsetup
> Manage plain dm-crypt and LUKS encrypted volumes.
- Format a drive (or a file) to make it a LUKS volume:
`cryptsetup luksFormat {{path_to_luks_volume_to_be}}`
- Open a volume so that you can access it decrypted on the fly at /dev/mapper/{{a}}:
`cryptsetup luksOpen {{path_to_luks_volume_to_be}} {{a}}`