web-dev-qa-db-ja.com

なぜzshをアップグレードできないのですか?

Ubuntu 14.04.5 LTSでの作業。 zshは、アップグレードが利用可能なパッケージです。

# apt-cache policy zsh
zsh:
  Installed: 5.0.2-3ubuntu6
  Candidate: 5.0.2-3ubuntu6
  Version table:
     5.0.5-4ubuntu1~ubuntu14.04.1 0
        100 http://nova.clouds.archive.ubuntu.com/ubuntu/ trusty-backports/main AMD64 Packages
 *** 5.0.2-3ubuntu6 0
        500 http://nova.clouds.archive.ubuntu.com/ubuntu/ trusty/main AMD64 Packages
        100 /var/lib/dpkg/status

ただし、apt-get install zshunattended-upgradesもアップグレードしません。

apt-get

# apt-get install --dry-run zsh
Reading package lists... Done
Building dependency tree       
Reading state information... Done
zsh is already the newest version.
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.

無人アップグレード

# unattended-upgrade --debug   
Initial blacklisted packages: 
Starting unattended upgrades script
Allowed origins are: ['o=LP-PPA-brightbox-Ruby-ng,a=trusty', 'o=Percona Development Team,a=', 'o=Ubuntu,a=trusty-security', 'o=Ubuntu,a=trusty-updates', 'o=Ubuntu,a=trusty', 'o=Ubuntu,a=trusty-backports', 'o=LP-PPA-ondrej-php,a=trusty', 'o=RabbitMQ,a=testing', 'o=LP-PPA-vbernat-haproxy-1.5,a=trusty', 'o=Node Source,a=', 'o=,a=now', 'o=Ubuntu,a=trusty-security', 'o=Ubuntu,a=trusty', 'o=UbuntuESM,a=trusty', 'o=Ubuntu,a=trusty-updates', 'o=Ubuntu,a=trusty-proposed', 'o=Ubuntu,a=trusty-backports', 'o=LP-PPA-ondrej-php,a=trusty', 'o=LP-PPA-brightbox-Ruby-ng,a=trusty', 'o=Node Source,a=trusty']
pkgs that look like they should be upgraded: 
Fetched 0 B in 0s (0 B/s)                                                                                                                         
fetch.run() result: 0
blacklist: []
No packages found that can be upgraded unattended and no pending auto-removals

新しいバージョンを明示的に要求しても、アップグレードは行われません。

# apt-get install zsh=5.0.5-4ubuntu1~ubuntu14.04.1
Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following extra packages will be installed:
  zsh
Suggested packages:
  zsh-doc
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.

なぜapt-getが嘘をついて、すでに最新バージョンを持っているのでしょうか? unattended-upgradesに「許可」としてtrusty-backportsを含むすべての可能なオリジンをリストしているのに、なぜ/etc/apt/apt.conf.d/50unattended-upgradesは同様にスキップしますか?

UPDATE:はい、「バックポート」がデフォルトで無効になっているのは理にかなっています。ただし、/etc/apt/sources.listに有効な発信元としてリストされています。

## Uncomment the following two lines to add software from the 'backports'
## repository.
## N.B. software from this repository may not have been tested as
## extensively as that contained in the main release, although it includes
## newer versions of some applications which may provide useful features.
## Also, please note that software in backports WILL NOT receive any review
## or updates from the Ubuntu security team.
deb http://nova.clouds.archive.ubuntu.com/ubuntu/ trusty-backports main restricted universe multiverse
deb-src http://nova.clouds.archive.ubuntu.com/ubuntu/ trusty-backports main restricted universe multiverse

上記の行からrestricted部分を削除しても、zshはアップグレードされません。

UPDATE:以下のコメントで提供されている link @ olivierb2を調べた後、強制的に/etc/apt/preferences.d/equalizeを作成しましたすべての発信元に同じ優先順位:

Package: *
Pin: release a=trusty-security
Pin-Priority: 509

Package: *
Pin: release a=trusty
Pin-Priority: 509

Package: *
Pin: release a=testing
Pin-Priority: 509

Package: *
Pin: release a=trusty-updates
Pin-Priority: 509

Package: *
Pin: release a=trusty-backports
Pin-Priority: 509

Package: *
Pin: release a=now
Pin-Priority: 509

そして今、物事は私が期待するように機能しています:

# apt-cache policy zsh
zsh:
  Installed: 5.0.2-3ubuntu6
  Candidate: 5.0.5-4ubuntu1~ubuntu14.04.1
  Version table:
     5.0.5-4ubuntu1~ubuntu14.04.1 0
        509 http://nova.clouds.archive.ubuntu.com/ubuntu/ trusty-backports/main AMD64 Packages
 *** 5.0.2-3ubuntu6 0
        509 http://nova.clouds.archive.ubuntu.com/ubuntu/ trusty/main AMD64 Packages
        509 /var/lib/dpkg/status

明確な「好み」の設定がない場合に優先順位を制御するものは何なのか、まだわかりません。しかし、今私は解決策を持っています。

1
Mikhail T.

バックポートはデフォルトで無効になっています。バックポートからパッケージをアップグレードするには、次のコマンドを使用する必要があります

apt-get install zsh -t trusty-backports

編集: ソースページ が見つからない

4
ob2