Odoo10にpostgreSQLをインストールしているときにこのエラーが発生します。
root@aboorva:~# Sudo apt-get install postgresql-9.6
Reading package lists... Done
Building dependency tree
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:
The following packages have unmet dependencies:
postgresql-9.6 : Depends: postgresql-common (>= 171~) but it is not going to be installed
Depends: libsystemd0 but it is not installable
Recommends: postgresql-contrib-9.6 but it is not going to be installed
Recommends: sysstat but it is not going to be installed
E: Unable to correct problems, you have held broken packages.
インストール時に特定のバージョンを要求したため、システムのライブラリではpostgresのそのバージョンをインストールできないことがわかります。
単にpostgresが必要で、特定のバージョンを気にしない場合は、次を試してください。
Sudo apt-get install postgres
その特定のバージョンが必要で、それが必要な場合は、libsystem0
パッケージとインストールされているものをすべて削除する必要があります。
また、システムがパッケージの一部をダウンロードしてアップグレードしたか、パッケージの更新中に停止した可能性もあります。その場合、このコマンドを実行して、処理を待機している不足しているパッケージをインストールする必要があります。
Sudo apt-get install -f
また、新しいバージョンをインストールする前に、使用しているバージョンのpostgresを削除することもできます。
Sudo apt-get remove postgres*