Mysql奇怪的安装问题(记录器:命令未找到)

这个问题真的很奇怪,我已经尝试了很多方法来解决但没有任何效果。 我的最后一个输出是:

Reading package lists... Done Building dependency tree Reading state information... Done 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 2 not fully installed or removed. After this operation, 0 B of additional disk space will be used. perl: warning: Setting locale failed. perl: warning: Please check that your locale settings: LANGUAGE = (unset), LC_ALL = (unset), LANG = "pl_PL.UTF-8" are supported and installed on your system. perl: warning: Falling back to the standard locale ("C"). locale: Cannot set LC_CTYPE to default locale: No such file or directory locale: Cannot set LC_MESSAGES to default locale: No such file or directory locale: Cannot set LC_ALL to default locale: No such file or directory Setting up mysql-server-5.5 (5.5.38-0ubuntu0.14.04.1) ... locale: Cannot set LC_CTYPE to default locale: No such file or directory locale: Cannot set LC_MESSAGES to default locale: No such file or directory locale: Cannot set LC_ALL to default locale: No such file or directory /var/lib/dpkg/info/mysql-server-5.5.postinst: line 146: logger: command not found ATTENTION: An error has occured. More info is in the syslog! /var/lib/dpkg/info/mysql-server-5.5.postinst: line 236: logger: command not found dpkg: error processing package mysql-server-5.5 (--configure): subprocess installed post-installation script returned error exit status 127 dpkg: dependency problems prevent configuration of mysql-server: mysql-server depends on mysql-server-5.5; however: Package mysql-server-5.5 is not configured yet. dpkg: error processing package mysql-server (--configure): dependency problems - leaving unconfigured Errors were encountered while processing: mysql-server-5.5 mysql-server E: Sub-process /usr/bin/dpkg returned an error code (1) 

我真的不知道该怎么解决,伙计们请帮帮我:)

与mysql-server-5.6有同样的问题,这个解决方案帮助了我:

launchpad:Bug#392051:找不到[Karmic] logger命令

基本上,程序logger搞砸了;

可以通过重新安装包bsdutils来重新创建它:

apt-get --reinstall install bsdutils

要么

aptitude reinstall bsdutils

您的“区域设置”尚未生成或未正确生成。

试试这个:

 sudo locale-gen en_US en_US.UTF-8 pl_PL pl_PL.UTF-8 sudo dpkg-reconfigure locales 

然后再次尝试安装MySQL。

这是本块提到的原始答案:

https://smyl.es/how-to-fix-ubuntudebian-apt-get-404-not-found-package-repository-errors-saucy-raring-quantal-oneiric-natty/

更新区域设置:

 sudo locale-gen fi_FI.UTF-8 sudo dpkg-reconfigure locales apt-get update 

在下面运行此命令

在您的服务器上,它将使用old-releases.ubuntu.com替换所有archive.ubuntu.comsecurity.ubuntu.com软件包存储库URL

 sudo sed -i -e 's/us.old-releases.ubuntu.com\|security.ubuntu.com/old-releases.ubuntu.com/g'/etc/apt/sources.list sudo sed -i -e 's/archive.ubuntu.com\|security.ubuntu.com/old-releases.ubuntu.com/g'/etc/apt/sources.list apt-get update