Closed issue by jirib on void-packages repository https://github.com/void-linux/void-packages/issues/28956 Description: TPM 1.2 is old but anyway... ``` -bash-5.1$ xuname Void 5.10.17_1 x86_64 GenuineIntel uptodate rrFFF -bash-5.1$ xbps-query -l | grep trousers ii trousers-0.3.14_10 Trusted Computing Software Stack for the TPM ``` IIUC `/dev/tpm0` is root owner only but `tcsd`'s `run` file has: ``` #!/bin/sh exec 2>&1 exec chpst -u tss:tss tcsd -f ``` This cannot make `tcsd` use `/dev/tpm0`, right? Arch Linux add following udev rule - https://aur.archlinux.org/cgit/aur.git/tree/70-tpmd.rules?h=trousers ``` KERNEL=="tpm[0-9]*", MODE="0600", OWNER="tss", GROUP="tss" ```