我有一个脚本,可以在Debian squeeze中下载并替换内核头文件.
function fixHeaders(){ #Replace the kernel headers from OVH with standard kernel headers... aptitude -y install linux-image-2.6.32-5-amd64 sed s/'GRUB_DEFAULT=0'/'GRUB_DEFAULT=1'/g update-grub echo "Rebooting the machine. Run this script again after reboot and choose option 2." sleep 1 reboot }
我遇到的问题是,在aptitude下载软件包后,它会将脚本抛入文本gui并向用户询问一堆问题.有没有办法跳过这个或在适当的时间发送标签/输入为所有答案选择“确定”?
基于Daniel t的评论,我能够用DEBIAN_FRONTEND = noninteractive来做到这一点
原文链接:https://www.f2er.com/bash/385753.htmlDEBIAN_FRONTEND=noninteractive /usr/bin/apt-get install -y -q --force-yes linux-image-2.6.32-5-amd64