9

在使用 apt-get 在 ubuntu 12.04 上安装 mailutils 时,有 2 个实例需要手动干预,第一个是选择站点配置,第二个是输入框的主机名。有没有办法自动安装?我需要在许多服务器上安装软件包并且作为 n00b 系统管理员,我还没有找到解决方案。我可以从源代码制作和安装,但是它还有其他问题。谢谢。

4

2 回答 2

12

您可以使用debconf-set-selections预选答案:

$ debconf-set-selections <<< "postfix postfix/mailname string your.hostname.com"
$ debconf-set-selections <<< "postfix postfix/main_mailer_type string 'Internet Site'"
$ apt-get install -y mailutils
于 2016-01-21T17:09:39.653 回答
1

您可能需要查看debconf配置细节。这是一个应该有帮助的链接

于 2013-03-22T02:13:01.370 回答