mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-06 00:44:32 +00:00
Update cheatsheets
This commit is contained in:
25
linux/cryptsetup
Normal file
25
linux/cryptsetup
Normal file
@@ -0,0 +1,25 @@
|
||||
---
|
||||
syntax: markdown
|
||||
tags: [tldr, linux]
|
||||
source: https://github.com/tldr-pages/tldr.git
|
||||
---
|
||||
# cryptsetup
|
||||
|
||||
> Manage plain dm-crypt and LUKS (Linux Unified Key Setup) encrypted volumes.
|
||||
> More information: <https://gitlab.com/cryptsetup/cryptsetup/>.
|
||||
|
||||
- Initialize a LUKS volume (overwrites all data on the partition):
|
||||
|
||||
`cryptsetup luksFormat {{/dev/sda1}}`
|
||||
|
||||
- Open a LUKS volume and create a decrypted mapping at `/dev/mapper/target`:
|
||||
|
||||
`cryptsetup luksOpen {{/dev/sda1}} {{target}}`
|
||||
|
||||
- Remove an existing mapping:
|
||||
|
||||
`cryptsetup luksClose {{target}}`
|
||||
|
||||
- Change the LUKS volume's passphrase:
|
||||
|
||||
`cryptsetup luksChangeKey {{/dev/sda1}}`
|
||||
Reference in New Issue
Block a user