我希望自动安装 gcc 和 runnit。但是当我“sudo apt-get install gcc”时,它会出现一个对话框来选择配置。所以我用
sudo DEBIAN_FRONTEND=noninteractive apt-get install -f -y --force-yes --no-install-recommends gcc
然后我用同样的方法安装runit
sudo DEBIAN_FRONTEND=noninteractive apt-get install -f -y --force-yes --no-install-recommends runit
但不幸的是发生了错误:它显示
start: Unknown job: runsvdir
dpkg: error processing runit (--configure):
subprocess installed post-installation script returned error exit status 1
E: Sub-process /usr/bin/dpkg returned an error code (1)
而我的系统是干净的 Ubuntu10.04 。如果我不安装 gcc noninteractiv,我可以安装 runit。
希望可以有人帮帮我。
谢谢!