plasmabio / template-bash

Plasma template environment for Bash
BSD 3-Clause "New" or "Revised" License
0 stars 4 forks source link

man #3

Open CVandiedonck opened 3 years ago

CVandiedonck commented 3 years ago

Is it not possible to install man on the environments?

pierrepo commented 3 years ago

As for now, we cannot install man pages within an environment. I tried many solutions, but all failed so far. However, we could try this one:

sed -i 's:^path-exclude=/usr/share/man:#path-exclude=/usr/share/man:' \
        /etc/dpkg/dpkg.cfg.d/excludes
apt update
apt install -y man manpages-posix

https://stackoverflow.com/questions/54152906/how-to-install-man-pages-on-an-ubuntu-docker-image

CVandiedonck commented 3 years ago

not straightforward then but worth trying one day when you are less busy!