Skip to content

Instantly share code, notes, and snippets.

@CodyKochmann
Created February 18, 2020 14:29
Show Gist options
  • Star 5 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save CodyKochmann/3f60e28f321f6bd9cce0740ec64b2153 to your computer and use it in GitHub Desktop.
Save CodyKochmann/3f60e28f321f6bd9cce0740ec64b2153 to your computer and use it in GitHub Desktop.
install podman on debian 10 and kali linux
echo 'deb http://download.opensuse.org/repositories/devel:/kubic:/libcontainers:/stable/Debian_10/ /' > /etc/apt/sources.list.d/devel:kubic:libcontainers:stable.list
wget -nv https://download.opensuse.org/repositories/devel:kubic:libcontainers:stable/Debian_10/Release.key -O- | apt-key add -
apt update
apt install podman
@rmrmg
Copy link

rmrmg commented May 4, 2021

It cannot be installed on debian 10 because of dependency problem:
podman : Depends: libseccomp2 (>= 2.4.3-1) but 2.3.3-4 is to be installed

buster-backports is required

@CarlosSMA
Copy link

Worked after using the backports, thx!

@adaptive-shield-matrix
Copy link

adaptive-shield-matrix commented May 24, 2021

libseccomp2 needs to be explicitely installed from backports
guide - https://sysaix.com/what-is-podman-how-to-install-podman-on-linux?amp=1

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment