Linux lenny发行版上的bind9升级

我必须在我的Debian lenny服务器中更新我的bind9软件包。 请build议我做这个最好的方法是什么。 这台服务器没有互联网连接。 这个操作不应该影响现有的系统设置。 任何人都可以在这个build议我。

谢谢

对于断开连接的机器, apt-offline工具允许安装软件包可以忍受:

 Description: offline apt package manager apt-offline is an Offline APT Package Manager . apt-offline can fully update and upgrade an APT based distribution without connecting to the network, all of it transparent to apt . apt-offline can be used to generate a signature on a machine (with no network). This signature contains all download information required for the apt database system. This signature file can be used on another machine connected to the internet (which need not be a Debian box and can even be running windows) to download the updates. The downloaded data will contain all updates in a format understood by apt and this data can be used by apt-offline to update the non-networked machine. . apt-offline can also fetch bug reports and make them available offline 

您可以查看Debian backports存储库,将较新的软件带到较旧的发行版中。 对系统的其他部分可能不透明,但希望比依靠源代码编译更好

如果您的服务器处于脱机状态,为什么还需要bind9? 使其在线和:

 # sudo apt-get update && sudo apt-get upgrade bind9 

或者在线机器上下载最新的bind9软件包:

 # apt-get -d install bind9 

它应该存储在这里:

 # ls -l /var/cache/apt/archives/bind9* 

将文件复制到离线服务器并执行:

  # apt-get install bind9 

像那样的…