HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

cryptsetup luksFormat — Initialize a LUKS partition and the initial key slot (0) with a passphrase or keyfile. Note: This op

Submitted by: @import:tldr-pages··
0
Viewed 0 times
thecommandandpartitionclilukscryptsetup luksformatinitialize
linux

Problem

How to use the cryptsetup luksFormat command: Initialize a LUKS partition and the initial key slot (0) with a passphrase or keyfile. Note: This operation overwrites all data on the partition. More information: <https://manned.org/cryptsetup-luksFormat>.

Solution

cryptsetup luksFormat — Initialize a LUKS partition and the initial key slot (0) with a passphrase or keyfile. Note: This operation overwrites all data on the partition. More information: <https://manned.org/cryptsetup-luksFormat>.

Initialize a LUKS volume with a passphrase:
cryptsetup luksFormat {{/dev/sdXY}}


Initialize a LUKS volume with a keyfile:
cryptsetup luksFormat {{/dev/sdXY}} {{path/to/keyfile}}


Initialize a LUKS volume with a passphrase and set its label:
cryptsetup luksFormat --label {{label}} {{/dev/sdXY}}

Code Snippets

Initialize a LUKS volume with a passphrase

cryptsetup luksFormat {{/dev/sdXY}}

Initialize a LUKS volume with a keyfile

cryptsetup luksFormat {{/dev/sdXY}} {{path/to/keyfile}}

Initialize a LUKS volume with a passphrase and set its label

cryptsetup luksFormat --label {{label}} {{/dev/sdXY}}

Context

tldr-pages: linux/cryptsetup luksFormat

Revisions (0)

No revisions yet.