无法加载 Debconf

无法加载 Debconf

我尝试在运行 Linux 2 的旧机器上升级 libc,但出现错误:

(Reading database ... 7426 files and directories currently installed.)
Preparing to replace libc6 2.2.5-11.8 (using .../libc6_2.24-11+deb9u1_i386.deb) ...
debconf: Unable to load Debconf::Element::Dialog::Error. Failed because: Can't locate Debconf/Element/Dialog/Error.pm in @INC (@INC contains: /usr/local/lib/perl/5.6.1 /usr/local/share/perl/5.6.1 /usr/lib/perl5 /usr/share/perl5 /usr/lib/perl/5.6.1 /usr/share/perl/5.6.1 /usr/local/lib/site_perl .) at (eval 14) line 2, <GEN1> line 5.
BEGIN failed--compilation aborted at (eval 14) line 2, <GEN1> line 5.

dpkg: error processing /var/cache/apt/archives/libc6_2.24-11+deb9u1_i386.deb (--unpack):
 subprocess pre-installation script returned error exit status 1
/var/lib/dpkg/tmp.ci/postrm: dpkg-maintscript-helper: command not found
dpkg: error while cleaning up:
 subprocess post-removal script returned error exit status 127
Errors were encountered while processing:
 /var/cache/apt/archives/libc6_2.24-11+deb9u1_i386.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)

它看起来像 perl 的东西,但我不知道该怎么做。你能告诉我应该做什么吗?我的目标是升级 Perl,为此我还必须升级 libc iiuc。

答案1

你应该升级perl。现在忽略 debconf(稍后你会告诉 debconf 你想再次收到问题)。

作为第一步,我会安装bash静态,只是为了在无法正常启动系统时有一个应急工具。 (从 Debian 站点下载,并使用 dpkg -i 安装)。

检查您需要什么 perl 模块(在 Debian 软件包站点上导航,然后仅检查必要的 perl 软件包)。安装它们(例如使用 dpkg --force- 强制它们)。有时,尝试 dpkg --configure --pending,以设置它缺少的内容。最后你应该有一个可以工作的系统,并尝试定期更新软件包。

相关内容