我正在为ubuntu主机上的ubuntu vagrant vm构建配置脚本12.10 64bit安装以下软件包时:
sudo apt-get -y install PHP5-xsl graphviz PHP-pear unison
我收到警告:
dpkg-reconfigure: unable to re-open stdin: No file or directory
我已经尝试过搜索但是结果却抛出了apt-get的所有其他错误,无法找出如何压制上面的警告.安装工作,但上面的警告导致vagrant up stdout中的错误行.
任何人都知道可能是什么原因或如何抑制警告
在任何apt-get
调用之前,我通过将以下
内容放入我的配置脚本中来
获取错误消息:
export DEBIAN_FRONTEND=noninteractive
这使得debconf使用了一个前端,它根本不需要交互式输入,从而阻止它甚至尝试访问stdin.
原文链接:/ubuntu/349043.html