无法安装 make

无法安装 make

我尝试在 Ubuntu 12.04 LTS 服务器上安装 make

apt-get install make

但我观察到错误: Temporary failure resolving 'de.archive.ubuntu.com

Failed to fetch http://de.archive.ubuntu.com/ubuntu/pool/main/m/make-dfsg/make_3.81-8.1ubuntu1.1_i386.deb

你能向我描述一下发生了什么事吗?

答案1

看来 Linux 无法解析任何 IP 地址。检查您的/etc/resolv.conf文件是否有任何名称服务器。Ubuntu 将在收到新的 dhcp 请求时替换文件的内容。如果您想快速修复,请在顶部添加以下几行/etc/resolv.conf

nameserver 8.8.8.8
nameserver 8.8.4.4 

这会将 Google 的公共 DNS 服务器添加到您的 Linux。如果您想永久配置这些名称服务器,只需将以下行添加dns-nameservers 8.8.8.8 8.8.4.4到您的网络配置中/etc/network/interfaces。最终配置可能看起来类似于此:

allow-hotplug eth0
iface eth0 inet static
    // [....]
    dns-nameservers 8.8.8.8 8.8.4.4

如果文件除了 lo 设备之外为空,请添加以下行:

allow-hotplug eth0
iface eth0 inet dhcp
     dns-nameservers 8.8.8.8 8.8.4.4

(默认网络设备将通过 dhcp 配置)。

相关内容