ubuntu 下安装 pthread man 遇到的一些问题

前端之家收集整理的这篇文章主要介绍了ubuntu 下安装 pthread man 遇到的一些问题前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

代码时想看pthread_create的函数说明,敲入man pthread_create终端输出No manual entry for pthread_create。应该是有些man文档没有安装。


首先执行:

  1. sudoapt-cachesearchpthread

搜索出来的第一行显示
  1. glibc-doc-GNUCLibrary:Documentation

应该就是这个文档没装,执行:


  1. sudoapt-getinstallglibc-doc

安装完后可以查看手册页,但man -k pthread 不能列出所有pthread的函数,需要安装posix-dev
  1. sudoapt-getinstallmanpages-posix-dev

此时有时候会出现

  1. Readingpackagelists...Done
  2. Buildingdependencytree
  3. Readingstateinformation...Done
  4. E:Couldn'tfindpackagemanpages-posix-dev

执行

  1. sudoapt-getupdate

重启网络:

sudo /etc/init.d/networking restart

现在就差不多搞定拉 原文链接:https://www.f2er.com/ubuntu/356359.html

猜你在找的Ubuntu相关文章