修复:无法执行"区域设置":/usr/share/perl5/Debconf/Encoding.pm中没有此类文件或者目录

时间:2020-01-09 10:44:49  来源:igfitidea点击:

问题

运行apt-get时,遇到以下错误:

Can't exec “locale”: No such file or directory at /usr/share/perl5/Debconf/Encoding.pm line 16.

Use of uninitialized value $Debconf::Encoding::charmap in scalar chomp at /usr/share/perl5/Debconf/Encoding.pm line 17.

dpkg: warning: ‘ldconfig' not found in PATH or not executable

dpkg: error: 1 expected program not found in PATH or not executable

Note: root's PATH should usually contain /usr/local/sbin, /usr/sbin and /sbin

E: Sub-process /usr/bin/dpkg returned an error code (2)

这是基于Debian和Debian的Linux发行版(如Ubuntu和Linux Mint)中的常见问题。我们将遇到此问题,并且将无法更新或者安装新程序。

解决方案

ldconfig可能已经从libc6移到了libc-bin。

在终端中,使用以下命令下载并提取libc-bin软件包:

apt-get download libc-bin
dpkg -x libc-bin*.deb unpackdir/

接下来,我们需要复制以下文件:

sudo cp unpackdir/sbin/ldconfig /sbin/

现在,我们需要确保一切井井有条。运行以下命令以确保:

sudo apt-get install --reinstall libc-bin
sudo apt-get install -f