]> git.ipfire.org Git - thirdparty/systemd.git/blame - man/tpm2-crypttab.sh
systemctl: do not fall back to StartUnit automatically for sleep operations
[thirdparty/systemd.git] / man / tpm2-crypttab.sh
CommitLineData
1fe6d37e 1# SPDX-License-Identifier: MIT-0
f4d74c61 2
cf1e172d
LP
3# Enroll the TPM2 security chip in the LUKS2 volume, and bind it to PCR 7
4# only. Replace /dev/sdXn by the partition to use (e.g. /dev/sda1).
5sudo systemd-cryptenroll --tpm2-device=auto --tpm2-pcrs=7 /dev/sdXn
6
7# Test: Let's run systemd-cryptsetup to test if this worked.
fb8d67cd 8sudo systemd-cryptsetup attach mytest /dev/sdXn - tpm2-device=auto
cf1e172d
LP
9
10# If that worked, let's now add the same line persistently to /etc/crypttab,
12c346d8
ZJS
11# for the future. We don't want to use the (unstable) /dev/sdX name, so let's
12# figure out a stable link:
13udevadm info -q -r symlink /dev/sdXn
c9bb40b1 14
12c346d8
ZJS
15# Now add the line using the by-uuid symlink to /etc/crypttab:
16sudo bash -c 'echo "mytest /dev/disk/by-uuid/... - tpm2-device=auto" >>/etc/crypttab'
17
4381474f 18# And now let's check that automatic unlocking works:
fb8d67cd 19sudo systemd-cryptsetup detach mytest
4381474f
ZJS
20sudo systemctl daemon-reload
21sudo systemctl start cryptsetup.target
22systemctl is-active systemd-cryptsetup@mytest.service
23
24# Once we have the device which will be unlocked automatically, we can use it.
25# Usually we would create a file system and add it to /etc/fstab:
26sudo mkfs.ext4 /dev/mapper/mytest
27# This prints a 'Filesystem UUID', which we can use as a stable name:
28sudo bash -c 'echo "/dev/disk/by-uuid/... /var/mytest ext4 defaults,x-systemd.mkdir 0 2" >>/etc/fstab'
29# And now let's check that the mounting works:
30sudo systemctl daemon-reload
31sudo systemctl start /var/mytest
32systemctl status /var/mytest
33
12c346d8
ZJS
34# Depending on your distribution and encryption setup, you may need to manually
35# regenerate your initramfs to be able to use a TPM2 security chip to unlock
36# the partition during early boot.
37# More information at https://unix.stackexchange.com/a/705809.
c9bb40b1
R
38# On Fedora based systems:
39sudo dracut --force
40# On Debian based systems:
41sudo update-initramfs -u