Skip to content

Instantly share code, notes, and snippets.

@raymanfx
Created October 19, 2019 13:11
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 raymanfx/a2797eb6d865740056042d46b766e107 to your computer and use it in GitHub Desktop.
Save raymanfx/a2797eb6d865740056042d46b766e107 to your computer and use it in GitHub Desktop.
openSUSE
#/bin/sh
# package(s)
sudo zypper install -y podman
# create mappable user ranges
sudo touch /etc/sub{u,g}id
sudo usermod --add-subuids 10000-65536 $(whoami)
sudo usermod --add-subgids 10000-65536 $(whoami)
# make podman aware of the changes
podman system migrate
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment