web-dev-qa-db-ja.com

Ubuntu Server 12.04.3のdebootstrapでこのエラーを修正するにはどうすればよいですか?

ツールxen-create-imageを使用すると、debootstrapプロセスでエラーが発生します。

ランニング

root@xen/tmp# debootstrap --Arch AMD64 precise /tmp/ubuntu 
I: Retrieving Release
I: Retrieving Release.gpg
I: Checking Release signature
I: Valid Release signature (key id 630239CC130E1A7FD81A27B140976EAF437D05B5)
I: Retrieving Packages
I: Validating Packages
I: Resolving dependencies of required packages...
I: Resolving dependencies of base packages...
I: Checking component main on http://us.archive.ubuntu.com/ubuntu...
I: Retrieving adduser

...
I: Extracting xz-utils...
I: Extracting zlib1g...
I: Installing core packages...
W: Failure trying to run: chroot /tmp/ubuntu dpkg --force-depends --install /var/cache/apt/archives/debconf_1.5.42ubuntu1_all.deb

だから私は実行してみました:

chroot/tmp/ubuntu dpkg --force-depends --install /var/cache/apt/archives/debconf_1.5.42ubuntu1_all.deb

インタラクティブに。

root@xen:/# chroot /tmp/ubuntu dpkg --force-depends --install /var/cache/apt/archives/debconf_1.5.42ubuntu1_all.deb
(Reading database ... 1944 files and directories currently installed.)
Preparing to replace debconf 1.5.42ubuntu1 (using .../debconf_1.5.42ubuntu1_all.deb) ...
Illegal instruction (core dumped)
dpkg: warning: subprocess old pre-removal script returned error exit status 132
dpkg - trying script from the new package instead ...
Illegal instruction (core dumped)
dpkg: error processing /var/cache/apt/archives/debconf_1.5.42ubuntu1_all.deb (--install):
 subprocess new pre-removal script returned error exit status 132
debconf: unable to initialize frontend: Dialog
debconf: (No usable dialog-like program is installed, so the dialog based frontend cannot be used. at /usr/share/Perl5/Debconf/FrontEnd/Dialog.pm line 76.)
debconf: falling back to frontend: Readline
debconf: unable to initialize frontend: Readline
debconf: (Can't locate Term/ReadLine.pm in @INC (@INC contains: /etc/Perl /usr/local/lib/Perl/5.14.2 /usr/local/share/Perl/5.14.2 /usr/lib/Perl5 /usr/share/Perl5 /usr/lib/Perl/5.14 /usr/share/Perl/5.14 /usr/local/lib/site_Perl .) at /usr/share/Perl5/Debconf/FrontEnd/Readline.pm line 7.)
debconf: falling back to frontend: Teletype
Illegal instruction (core dumped)
dpkg: error while cleaning up:
 subprocess installed post-installation script returned error exit status 132
Errors were encountered while processing:
 /var/cache/apt/archives/debconf_1.5.42ubuntu1_all.deb

出力:不正な命令(コアダンプ)debconfまたは何かに関する根本的な問題を示唆しているようです。この問題を回避して、debootstrapスクリプトをエラーなしで実行できるようにする方法はありますか?

6
Matt H

試してみる

apt-get install dialog

それを見つけた こちら 同じ問題を抱えた後。 (debootstrap wheezy --variant=minbaseをしました)

または、次を使用できます

export DEBIAN_FRONTEND=noninteractive

apt-getを実行する前。これは、スクリプトまたはDockerfilesでも機能する純粋なテキストコンソールインターフェイスにフォールバックします。

11
Daniel Alder

私は今までに同じ問題を2回抱えていましたが、それは混乱したパッケージが原因でした。ターミナルで次のコマンドを実行すると、問題が修正されます。

apt-get update && apt-get dist-upgrade
1
Marius Voila