systemd cryptsetupにキーファイルを含むUSBキーを自動的にマウントさせる方法は?

systemd cryptsetupにキーファイルを含むUSBキーを自動的にマウントさせる方法は?

Ubuntu 19.10では、この例に従いました。ここ。キーファイルは、USBキーファイルシステムのルートディレクトリにあります。 usbkeyにはuuidがありますyyyy。次のようになります/etc/crypttab

encrypted UUID=xxxx /keyfile:UUID=yyyy luks,keyfile-timeout=60,x-systemd.device-timeout=2min

自動的に生成されるジェネレータは次のとおりです。/run/systemd/generator/[email protected]

# Automatically generated by systemd-cryptsetup-generator

[Unit]
Description=Cryptography Setup for %I
Documentation=man:crypttab(5) man:systemd-cryptsetup-generator(8) man:[email protected](8)
SourcePath=/etc/crypttab
DefaultDependencies=no
Conflicts=umount.target
IgnoreOnIsolate=true
After=cryptsetup-pre.target
Before=cryptsetup.target
RequiresMountsFor=/keyfile:UUID=yyyy
BindsTo=dev-disk-by\x2duuid-xxxx.device
After=dev-disk-by\x2duuid-xxxx.device
Before=umount.target

[Service]
Type=oneshot
RemainAfterExit=yes
TimeoutSec=0
KeyringMode=shared
OOMScoreAdjust=500
ExecStart=/lib/systemd/systemd-cryptsetup attach 'encrypted' '/dev/disk/by-uuid/xxxx' '/keyfile:UUID=yyyy' 'luks,keyfile-timeout=60'
ExecStop=/lib/systemd/systemd-cryptsetup detach 'encrypted'

ただし、.txtファイルにはUSBキーの取り付けに関する内容は表示されませんjournalctl。常に直接起動し、system-cryptsetupファイルが見つかりません。

systemd-cryptsetup[1132]: Encountered unknown /etc/crypttab option 'keyfile-timeout=60', ignoring.
systemd-cryptsetup[1132]: WARNING: Locking directory /run/cryptsetup is missing!
systemd[1]: Started File System Check Daemon to report status.
systemd-cryptsetup[1132]: Set cipher aes, mode xts-plain64, key size 512 bits for device /dev/disk/by-uuid/xxxx
systemd-cryptsetup[1132]: Failed to open key file.
systemd-cryptsetup[1132]: Failed to activate with key file '/keyfile:UUID=yyyy

ベストアンサー1

Debian には、標準のシステム crypttab 形式をまったくサポートしていない他の crypttab 実装があるため、その例は使用できません。完了するには、Debian 形式を使用する必要があります。

おすすめ記事