cryptsetup: update page; cryptsetup-{open,luksformat}: add page (#14153)

This commit is contained in:
Lena
2024-10-16 09:23:22 +02:00
committed by GitHub
parent a539317252
commit 5802774ae0
3 changed files with 57 additions and 9 deletions

View File

@@ -1,20 +1,25 @@
# cryptsetup
> Manage plain dm-crypt and LUKS (Linux Unified Key Setup) encrypted volumes.
> More information: <https://gitlab.com/cryptsetup/cryptsetup/>.
> Manage plain `dm-crypt` and LUKS (Linux Unified Key Setup) encrypted volumes.
> Some subcommands such as `luksFormat` have their own usage documentation.
> More information: <https://manned.org/cryptsetup>.
- Initialize a LUKS volume (overwrites all data on the partition):
- Initialize a LUKS volume with a passphrase (overwrites all data on the partition):
`cryptsetup luksFormat {{/dev/sda1}}`
`cryptsetup luksFormat {{/dev/sdXY}}`
- Open a LUKS volume and create a decrypted mapping at `/dev/mapper/target`:
- Open a LUKS volume and create a decrypted mapping at `/dev/mapper/mapping_name`:
`cryptsetup luksOpen {{/dev/sda1}} {{target}}`
`cryptsetup open {{/dev/sdXY}} {{mapping_name}}`
- Display information about a mapping:
`cryptsetup status {{mapping_name}}`
- Remove an existing mapping:
`cryptsetup luksClose {{target}}`
`cryptsetup close {{mapping_name}}`
- Change the LUKS volume's passphrase:
- Change a LUKS volume's passphrase:
`cryptsetup luksChangeKey {{/dev/sda1}}`
`cryptsetup luksChangeKey {{/dev/sdXY}}`