Skip to content

Instantly share code, notes, and snippets.

@Toomoch
Last active January 27, 2022 18:22
Show Gist options
  • Save Toomoch/cbb662981f06fc0050f4022126107206 to your computer and use it in GitHub Desktop.
Save Toomoch/cbb662981f06fc0050f4022126107206 to your computer and use it in GitHub Desktop.
Restore man-pages in a Fedora container image

sudo sed -i '/^[^#]/ s/\(^.*tsflags=nodocs.*$\)/#\1/' /etc/dnf/dnf.conf

sudo dnf install man man-pages

sudo dnf reinstall *

Also we can enable fast-mirror, delta and parallel downloads: echo 'fastestmirror=1' | sudo tee -a /etc/dnf/dnf.conf

echo 'max_parallel_downloads=10' | sudo tee -a /etc/dnf/dnf.conf

echo 'deltarpm=true' | sudo tee -a /etc/dnf/dnf.conf

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