上記のwombleの答えは一般的には良いのですが、私にとってはうまくいきませんでした。100%無人で行くには追加の調査が必要でした。将来の訪問者のために物事をより簡単にするために、簡潔な方法で結果を共有すると思いました。
以下は、debian 8リリースノートのアップグレードに関する推奨事項(ほとんどの場合)に従って実行されるスクリプトで、フラグと環境変数が無人で動作します。(echo
sはデバッグ用であり、削除することができます-ただし、スクリプトが動かなくなった場合はどこにいるかわかるように保持することをお勧めします)
#!/bin/bash
apt-get remove apt-listchanges --assume-yes --force-yes &&
#using export is important since some of the commands in the script will fire in a subshell
export DEBIAN_FRONTEND=noninteractive &&
export APT_LISTCHANGES_FRONTEND=none &&
#lib6c was an issue for me as it ignored the DEBIAN_FRONTEND environment variable and fired a prompt anyway. This should fix it
echo 'libc6 libraries/restart-without-asking boolean true' | debconf-set-selections &&
echo "executing wheezy to jessie" &&
find /etc/apt -name "*.list" | xargs sed -i '/^deb/s/wheezy/jessie/g' &&
echo "executing autoremove" &&
apt-get -fuy --force-yes autoremove &&
echo "executing clean" &&
apt-get --force-yes clean &&
echo "executing update" &&
apt-get update &&
echo "executing upgrade" &&
apt-get --force-yes -o Dpkg::Options::="--force-confold" --force-yes -o Dpkg::Options::="--force-confdef" -fuy upgrade &&
echo "executing dist-upgrade" &&
apt-get --force-yes -o Dpkg::Options::="--force-confold" --force-yes -o Dpkg::Options::="--force-confdef" -fuy dist-upgrade