Ubuntu 16.04 上的 tpm2-tools

Ubuntu 16.04 上的 tpm2-tools

我正在尝试在 ubuntu 16.04 上使用 tpm2-tools(我有这个内核版本4.15.0-54-generic

为了安装 tpm2-tools,我做了apt-get install tpm2-tools

我有 TPM2.0 硬件,我可以在我的机器上看到它

$ ls -l /dev/tpm*
crw------- 1 root root  10,   224 Sep 18 08:12 /dev/tpm0
crw------- 1 root root 253, 65536 Sep 18 08:12 /dev/tpmrm0

但是,我无法执行任何 tpm 操作

$ tpm2_getrandom -s 20 -o random.out
Resource Mgr, resMgr, failed initialization: 0x1.  Exiting...

有人能给我指出正确的方向吗?

tpm2-tools 详细信息

$ sudo apt-cache show tpm2-tools
Package: tpm2-tools
Priority: optional
Section: universe/utils
Installed-Size: 964
Maintainer: Ubuntu Developers <[email protected]>
Architecture: amd64
Version: 1.0.0+20160226.64b3334-0ubuntu2
Depends: libc6 (>= 2.14), libcurl3 (>= 7.16.2), libssl1.0.0 (>= 1.0.0), libtss2-0, libtss2-utils
Filename: pool/universe/t/tpm2-tools/tpm2-tools_1.0.0+20160226.64b3334-0ubuntu2_amd64.deb
Size: 90006
MD5sum: 2a5dd741bab5ba886508b87559d1151d
SHA1: 65c4f508b8643d808eb28e481dc660a68a0aba3d
SHA256: a8127c59b2ac7520f8f8993e9849f9dcc46486bced2f4b54c7fef56ac8e3b59e
Description-en: TPM 2.0 utilities
 This package contains a set of tools to use with TPM 2.0 chips,
 for common tasks and features provided by the hardware; such as
 for doing basic key management, attestation, encryption and signing.
Description-md5: 7dab290b7414623bbe70b4f8bc047903
Homepage: https://github.com/01org/tpm2.0-tools
Bugs: https://bugs.launchpad.net/ubuntu/+filebug
Origin: Ubuntu

编辑:

通过运行设置 tpm2-tools 的内核资源管理器

export TPM2TOOLS_TCTI="device:/dev/tpmrm0"

也没有帮助,得到同样的错误

答案1

有一个二进制文件,但无处可查,它是依赖包的resourcemgr一部分。找到了libtss2-utilstpm2-tools这里

我们需要在运行 tpm2 命令之前启动 resourcemgr 服务

systemctl start tpm2-resourcemgr或者/usr/sbin/resourcemgr &

相关内容