我会尝试使用内置在Debian 8笔记本电脑上的tpm (可信平台模块)。大多数tpm_*程序都给出了答案:
root@debian:~# tpm_takeownership
Enter owner password:
Confirm password:
Enter SRK password:
Confirm password:
Tspi_TPM_TakeOwnership failed: 0x00000008 - layer=tpm, code=0008 (8), The TPM target command has been disabled康文署回馈:
root@debian:~# tcsd -f
TCSD TDDL ERROR: Could not find a device to open!加载模块:
root@debian:~# lsmod | grep tpm
tpm_tis 17231 0
tpm 31511 2 tpm_tis最后,dmesg还:
root@debian:~# dmesg | grep tpm
[ 6.743307] tpm_tis 00:05: 1.2 TPM (device-id 0x0, rev-id 78)TPM在BIOS中被打开。有线索吗?
发布于 2015-06-26 20:24:57
在bios中启用TPM可能需要一个有效的动力循环。bios菜单中可能有两个不同的项要配置。
我有一个额外的模块:tpm_bios。
device-id of 0x0听起来不太对。例如,对于Atmel TPM,应该是0x3204。
一个有用的第一个尝试命令是tpm_version,然后是tpm_getpubek和tpm_selftest,在tpm_takeownership之前。
https://unix.stackexchange.com/questions/212471
复制相似问题