25

I am trying to follow this guide and am not getting very far. I am using a pretty basic digital ocean VPS running latest ubuntu 20.04, and am getting this error when trying to create the certificate authority.

kieran@azuracast:~$ pki --gen --type rsa --size 4096 --outform pem > ~/pki/private/ca-key.pem
TPM 2.0 - could not load "libtss2-tcti-tabrmd.so.0"
plugin 'tpm': failed to load - tpm_plugin_create returned NULL
kieran@azuracast:~$

It seems someone else in the comments was getting this but there are no replies. Any thoughts?

Chris Albert
  • 2,462
  • 8
  • 27
  • 31
kieranlittle667
  • 251
  • 3
  • 3
  • 2
    "libtss2-tcti-tabrmd.so.0" : `sudo apt install libtss2-tcti-tabrmd0` from the **universe** repo https://packages.ubuntu.com/focal/libtss2-tcti-tabrmd0 ......... Ref. https://packages.ubuntu.com/search?suite=focal&arch=amd64&mode=filename&searchon=contents&keywords=libtss2-tcti-tabrmd.so.0 – Knud Larsen Dec 31 '21 at 18:18

2 Answers2

44

Installing the following package resolved the issue for me:

libtss2-tcti-tabrmd0
ouflak
  • 2,458
  • 10
  • 44
  • 49
Ter9
  • 541
  • 3
  • 3
2

Installing the missing package works:

apt install libtss2-tcti-tabrmd0