LoginSignup
2
0

More than 1 year has passed since last update.

PodmanをUbuntu 20.04にinstallする

Posted at

何故この記事を書くの

Podmanの公式サイトから古いバージョンのUbuntuへのインストール方法が削除されてしまったため、毎回調べるのが面倒になったからです。

なぜ公式ではこの手順が削除されたの

非推奨になったためです。この手順は新しい長期サポートバージョンの22.04ではサポートされません。20.10でも新しい手順で利用可能なため、公式ドキュメントから削除された模様です。

20.10以降を利用している場合は新しい手順を実施することを推奨します。

なお、Ubuntu 18.04のサポート期限は2023年4月、
Ubuntu 20.04のサポート期限は2025年4月です。

手順

. /etc/os-release

echo "deb http://download.opensuse.org/repositories/devel:/kubic:/libcontainers:/stable/xUbuntu_${VERSION_ID}/ /" | sudo tee /etc/apt/sources.list.d/devel:kubic:libcontainers:stable.list

wget -nv https://download.opensuse.org/repositories/devel:kubic:libcontainers:stable/xUbuntu_${VERSION_ID}/Release.key -O- | sudo apt-key add -

sudo apt update -y

sudo apt install -y podman
2
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
2
0