web-dev-qa-db-ja.com

apt-getの強制インストール

BeantalkdをSudo apt-get install beanstalkd-fオプションも)でインストールしようとすると、次のエラーが表示されます。

Reading package lists... Done
Building dependency tree
Reading state information... Done
You might want to run `apt-get -f install' to correct these:
The following packages have unmet dependencies:
  beanstalkd: Depends: libevent-1.4-2 (>= 1.4.13-stable) but it is not going to be installed
  mysql-server-5.1: Depends: mysql-client-5.1 (>= 5.1.62-0ubuntu0.10.04.1) but it is not going to be installed
                    Depends: libmysqlclient16 (>= 5.1.21-1) but it is not going to be installed
                    Depends: mysql-server-core-5.1 (>= 5.1.62-0ubuntu0.10.04.1) but it is not going to be installed
                    PreDepends: mysql-common (>= 5.1.62-0ubuntu0.10.04.1) but it is not going to be installed
E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).
20
aWebDeveloper

最初にリポジトリからdebパッケージをダウンロードします

apt-get download <package_name>

Debファイルをインストールします(現在のフォルダーにある必要があります)

Sudo dpkg -i <downloaded_package_deb_file>
30
ineicu

Sudo apt-get --fix-missing installを実行してみてください

3
user95688

試してみる

Sudo apt-get install -f

ターミナルにパッケージがありません。

それでも依存関係のエラーが発生する場合は、発行する必要があります

Sudo apt-get remove beanstalkd

してみて

Sudo apt-get install mysql-server beanstalkd

これでmysqlの依存関係とbeanstalkがインストールされます。

2
VooDooStevie

走る

apt --fix-broken install

パッケージなし。そして、パッケージを再度インストールしてみてください。

0
nipunasudha