0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Ubuntuに入っている特定パッケージをアップデートするメモ

Posted at

何のメモか

Ubuntuに入っているパッケージに脆弱性が報告され、アプデが必要になる時があります。そういう時に迷わないためのメモ。

なおaptを使うものとします。

手順

「アップデート可能なパッケージのリスト」を更新する

apt update

アップデート必要なパッケージが1のリストにあることを確認する

apt list --upgradable

アップデートをシミュレーションしてみる

apt install -s <パッケージ名>

アップデートを実施する

apt install --only-upgrade <パッケージ名>

アップデート成功を確認する(対象パッケージのバージョンを確認する)

apt list -a <パッケージ名>

おまけ

アップデート成功確認のコマンドで「focal-updates」とか出てくるかもしれません(Ubuntu 20.04の場合)。focalとはなんぞや? と思うかもしれませんが、これはUbuntuバージョン毎にあるコードネームです。Ubuntuはバージョン毎に「形容詞+動物の名詞」で、頭文字で韻を踏むようにコードネームをつけるらしい。20.04なら「Focal Fossa」。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?