我正在使用Ubuntu13.04运行Linux内核版本3.8.0-32-泛型。man-pages版本是:
[manu@laptop] man-pages: man --version
man 2.6.3我想知道这个man-pages版本和我的内核版本之间有什么联系。在用C进行编程时,我使用的是在man-pages 3.47中添加了哪个手册页(在第2节中)的系统调用。有没有办法让我以干净的方式安装这个男人版本。所谓清理,我的意思是确保我不会用我的Linux内核或Linux不支持的东西更新某些手册页。
根据基思的答案编辑
[manu@laptop] man-pages: dpkg -l | grep "\-doc"
ii libx11-doc 2:1.5.0-1ubuntu1.1 all X11 client-side library (development documentation)
ii lmbench-doc 3.0-a9-1 all Documentation for the lmbench benchmark suite
ii mozart-doc 1.4.0-8ubuntu1 all Mozart Programming System (Documentation)
ii perl-doc 5.14.2-21 all Perl documentation
ii texlive-doc-base 2012.20120611-1 all TeX Live: TeX Live documentation
ii texlive-fonts-recommended-doc 2012.20120611-5 all TeX Live: Documentation files for texlive-fonts-recommended
ii texlive-latex-base-doc 2012.20120611-5 all TeX Live: Documentation files for texlive-latex-base
ii texlive-latex-extra-doc 2012.20120611-2 all TeX Live: Documentation files for texlive-latex-extra
ii texlive-latex-recommended-doc 2012.20120611-5 all TeX Live: Documentation files for texlive-latex-recommended
ii texlive-pictures-doc 2012.20120611-5 all TeX Live: Documentation files for texlive-pictures
ii texlive-pstricks-doc 2012.20120611-2 all TeX Live: Documentation files for texlive-pstricks
ii texlive-science-doc 2012.20120611-2 all TeX Live: Documentation files for texlive-science
ii transcode-doc 3:1.1.7-4 all Text console video-stream processing tool (documentation)
ii ubuntu-docs 13.04.3 all Ubuntu Desktop Guide
ii xorg-docs-core 1:1.6-1ubuntu2 all Core documentation for the X.org X Window System
ii xorg-sgml-doctools 1:1.10-1 all Common tools for building X.Org SGML documentation搜索手册包的结果
[manu@laptop] man-pages: dpkg -l | grep "manpages"
ii manpages 3.44-0ubuntu1 all Manual pages about using a GNU/Linux system
ii manpages-dev 3.44-0ubuntu1 all Manual pages about using GNU/Linux for development
ii manpages-posix 2.16-1 all Manual pages about using POSIX system
ii manpages-posix-dev 2.16-1 all Manual pages about using a POSIX system for development发布于 2013-11-01 19:39:28
2.6.3是man命令的版本,而不是已安装的手册页的版本。它与man命令本身无关。手册页与man命令分开管理,通常在名称包括-doc的包中进行管理。
通常,您的包管理系统应该使文档与您安装的软件保持同步。dpkg -l应该告诉您您所拥有的每个包的版本。
https://stackoverflow.com/questions/19732942
复制相似问题