ここに特定のパッケージをインストールしたり、適切な通知を防ぐにはどうすればよいですか?

ここに特定のパッケージをインストールしたり、適切な通知を防ぐにはどうすればよいですか?

パッケージを更新しましたが、apt次の通知で1つのパッケージを更新できることがわかりました。

1 package can be upgraded. Run 'apt list --upgradable' to see it.

オプションは次のとおりです。

  1. バージョンにアップデートしてください libreoffice-sdbc-firebird/stretch-backports 1:5.4.0-1~bpo9+1 amd64
  2. 通知を防ぐには

通知コードのコピー

masi@masi:~$ sudo apt update
...
Hit:15 http://cdn-fastly.deb.debian.org/debian stretch Release
Reading package lists... Done
Building dependency tree       
Reading state information... Done
1 package can be upgraded. Run 'apt list --upgradable' to see it.

パッケージのリストを確認し、更新するパッケージと現在の状態を選択してください。

masi@masi:~$ apt list -a --upgradable
Listing... Done
libreoffice-sdbc-firebird/unstable 1:5.4.0-1 amd64 [upgradable from: 1:4.3.3-2+deb8u7]
libreoffice-sdbc-firebird/stretch-backports 1:5.4.0-1~bpo9+1 amd64
libreoffice-sdbc-firebird/now 1:4.3.3-2+deb8u7 amd64 [installed,upgradable to: 1:5.4.0-1]

1. パッケージを不安定なバージョンにアップデートしてみてください。

これを行いますが、競合があるため、オプション(2)が良く見えます。

masi@masi:~$ sudo apt install libreoffice-sdbc-firebird/stretch-backports
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Selected version '1:5.4.0-1~bpo9+1' (Debian Backports:stretch-backports [amd64]) for 'libreoffice-sdbc-firebird'
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:
 libreoffice-sdbc-firebird : Depends: libreoffice-core (= 1:5.4.0-1~bpo9+1) but 1:5.2.7-1 is to be installed
                             Depends: uno-libs3 (>= 5.3.0~alpha) but 5.2.7-1 is to be installed
E: Unable to correct problems, you have held broken packages.

2. この通知が表示されないようにする

現在のパッケージを維持していますが、通知は当分の間維持する方が良いと思います。おそらくequivsと特にequivs-control

オペレーティングシステム:Debian 9.1
関連:apt updateはパッケージをアップグレードできると言いますが、アップグレードはその逆です。

ベストアンサー1

インストールするにはlibreoffice-sdbc-firebird(ストレッチバックポートでのみ利用可能です)、バックポートからアップグレードする必要がありlibreoffice-coreますuno-libs3

sudo apt install -t stretch-backports libreoffice-core uno-libs3
sudo apt install -t stretch-backports libreoffice-sdbc-firebird

おすすめ記事