如何解决Ubuntu docker镜像无法使用man帮助文档的问题

前端之家收集整理的这篇文章主要介绍了如何解决Ubuntu docker镜像无法使用man帮助文档的问题前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

原因:
/etc/dpkg/dpkg.cfg.d/excludes文件中,拒绝安装帮助文档。此时,就算apt安装帮助文档显示成功,但实际上并没有安装到本地。excludes文件内容如下:

# Drop all man pages
 path-exclude=/usr/share/man/*

# Drop all documentation ...
 path-exclude=/usr/share/doc/*

# ... except copyright files ...
path-include=/usr/share/doc/*/copyright

# ... and Debian changelogs
path-include=/usr/share/doc/*/changelog.Debian.*

解决:把第2、4行注释掉

原文链接:https://www.f2er.com/ubuntu/349342.html

猜你在找的Ubuntu相关文章