diff options
author | Adel Mamin <adel.mamin@exafore.com> | 2019-05-31 09:30:00 +0300 |
---|---|---|
committer | Adel Mamin <adel.mamin@exafore.com> | 2019-07-03 12:38:35 +0300 |
commit | 08bd05cf5c40affe72b4709e646e795fd3ff623c (patch) | |
tree | cc44d0eebf6e1239c0ffd543dcfbe5d044fba06d | |
parent | 23711589f06b243fde07b9fcecb1cdc11c98a616 (diff) | |
download | podman-08bd05cf5c40affe72b4709e646e795fd3ff623c.tar.gz podman-08bd05cf5c40affe72b4709e646e795fd3ff623c.tar.bz2 podman-08bd05cf5c40affe72b4709e646e795fd3ff623c.zip |
Updated install.md for Manjaro Linux
Signed-off-by: Adel Mamin <adel.mamin@exafore.com>
-rw-r--r-- | install.md | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/install.md b/install.md index 7839c3e7d..27610273f 100644 --- a/install.md +++ b/install.md @@ -2,7 +2,7 @@ ## Installing packaged versions of Podman -#### [Arch Linux](https://www.archlinux.org) +#### [Arch Linux](https://www.archlinux.org) & [Manjaro Linux](https://manjaro.org) ```bash sudo pacman -S podman @@ -138,6 +138,26 @@ sudo apt-get install \ uidmap ``` +On Manjaro (and maybe other Linux distributions): + +Make sure that the Linux kernel supports user namespaces: + +``` +> zgrep CONFIG_USER_NS /proc/config.gz +CONFIG_USER_NS=y + +``` + +If not, please update the kernel. +For Manjaro Linux the instructions could be found here: +https://wiki.manjaro.org/index.php/Manjaro_Kernels + +After that enable user namespaces: + +``` +sudo sysctl kernel.unprivileged_userns_clone=1 +``` + ### Building missing dependencies If any dependencies cannot be installed or are not sufficiently current, they have to be built from source. |