输入代码hereI我正在尝试安装nettle库。所以,我首先安装了GMP库。然后我正在尝试配置nettle libray,我得到了下面的警告。
DNSSEC root key file in /etc/unbound/root.key was not found
This file is nedded for the verification of DNSSEC responses.
Use the command: unbound-anchor -a "/etc/unbound/root.key"
to generate or update it.我试着给你
$apt-get update但是我总是得到0%的进步。它不会增加。(它没有连接到互联网。)我应该连接到互联网吗?如果是这样的话,这对我来说是不可能的,因为我的开发系统总是离线。是否有任何下载选项可供我从其他系统下载并传输到我的开发系统?
我也试过了
$unbound-anchor - "/etc/unbound/root.key"但结果显示,
unbound-anchor: command not found如何解决此警告?
发布于 2014-04-17 01:42:23
我在linuxmint上编译gnutls时遇到了同样的问题。我通过安装"unbound“包解决了这个问题。因为linuxmint是基于debian的,所以这是:
sudo apt-get install unbound
随后的配置尝试表明,我还需要"libunbound-dev“包,该包在编译nettle时也可能适用:
sudo apt-get install libunbound-dev
https://stackoverflow.com/questions/16982337
复制相似问题