Skip to content

Instantly share code, notes, and snippets.

@benselme
Created March 20, 2023 18:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save benselme/570b1ce460b142a2f5012e7331f9e664 to your computer and use it in GitHub Desktop.
Save benselme/570b1ce460b142a2f5012e7331f9e664 to your computer and use it in GitHub Desktop.
How to install latest podman version in linux mint 21

This installs the latest podman version on a Linux Mint 21 system, using OpenSuse's kubic project's repositories.

mkdir -p /etc/apt/keyrings
curl -fsSL https://download.opensuse.org/repositories/devel:/kubic:/libcontainers:/unstable/xUbuntu_22.04/Release.key   | gpg --dearmor   | sudo tee /etc/apt/keyrings/devel_kubic_libcontainers_unstable.gpg > /dev/null
echo   "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/devel_kubic_libcontainers_unstable.gpg] https://download.opensuse.org/repositories/devel:kubic:libcontainers:unstable/xUbuntu_22.04/ /"   | sudo tee /etc/apt/sources.list.d/devel:kubic:libcontainers:unstable.list > /dev/null
apt update
apt install podman
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment