使用apt-get在ubuntu 12.04上安装mailutils时,有2个需要手动干预的实例,首先选择站点配置,然后输入框的主机名。有没有办法自动安装?我需要在许多服务器上安装软件包并且是一个n00b系统管理员,我还没有找到解决方案。我可以从源代码制作和安装,但它有其他问题。感谢名单。
答案 0 :(得分:9)
您可以使用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
答案 1 :(得分:1)
您可能希望查看 debconf 配置细节。这是一个link that should help。