在我的大学里,我可以做以下事情:
- 字符串
- 字符串复制
- 手动消息
- 消息控制命令
然后会出现一个漂亮的手册页。在我的电脑上我得到
$ man strcat
No manual entry for strcat
关于如何将这些文档页面导入我的计算机,有什么帮助吗?
答案1
安装manpages-dev
和manpages-posix-dev
(感谢 ChristopheD)软件包。您应该能够在 synaptic 中找到它们,或者输入
apt-get install manpages-dev
apt-get install manpages-posix-dev
在命令行中。
答案2
对于 Fedora,你可以使用以下命令安装它yum
:
yum install man-pages libstdc++-docs
答案3
您可能还会发现 glibc-doc 包很有用。来自http://packages.ubuntu.com/jaunty/glibc-doc:
包含信息和 html 格式的 GNU C 库参考手册以及 libpthread 函数的手册页和完整的 GNU C 库变更日志。
答案4
Ubuntu + 其他;您也可以在 aptitude 中进行搜索。例如:
:~$ aptitude search manpages
i asr-manpages - alt.sysadmin.recovery manual pages
i csound-manpages - manual pages for csound
i erlang-manpages - Erlang/OTP manual pages
i freebsd-manpages - Manual pages for a GNU/kFreeBSD system
i funny-manpages - more funny manpages
i gmt-manpages - Manpages for the Generic Mapping Tools
i manpages - Manual pages about using a GNU/Linux system
p manpages-cs - Czech version of the manual pages
p manpages-de - German manpages
p manpages-de-dev - German development manpages
i manpages-dev - Manual pages about using GNU/Linux for development
p manpages-es - Spanish man pages
p manpages-es-extra - Spanish extra manpages
p manpages-fr - French version of the manual pages about using GNU/Linux
p manpages-fr-dev - French version of the development manual pages
...
其中“i”表示包已安装,“p”表示已清除/未安装。
~$ man aptitude
然后即:
~$ sudo apt-get install manpages-es-extra
其他系统也有类似的功能。