找不到某些手册页

找不到某些手册页

几年前我使用过 Fedora,并且看到了下面的手册页:

  • unistd.h
  • sys/types.h
  • 标准 typedef (以 为后缀_t) 等等

我试过了 man unistd,但没找到。我认为这些页面在 Ubuntu 中不存在,尽管man stdio可以工作。

所以

  • 如果 Ubuntu 没有,请告诉我如何下载
  • 查看标准 typedef 手册页的命令是什么,即 size_t、pid_t、off_t、clock_t 等的手册页。

我试过了man stddef,但没有找到。

答案1

您需要安装 manpages-posix-dev 包

sudo apt-get install manpages-posix-dev
man unistd.h

相关内容