Ubuntuでmanコマンドが使えないときの対処法

$ man
zsh: command not found: man
manをインストールしましょう。
sudo apt-get install man
でもこれだけだと、システムコールのmanが見れません。
$ man 2 fork
No manual entry for fork in section 2
"manpages-dev"をインストールしましょう
sudo apt-get install manpages-dev
これで、システムコールのmanが見れるようになります。
$ man 2 fork
FORK(2)      Linux Programmer's Manual

NAME
       fork - create a child process

SYNOPSIS
       #include <unistd.h>

       pid_t fork(void);

DESCRIPTION
       fork()  creates a new process by duplicating the calling process.
       The new process, referred to as the child, is an exact duplicate of
       the calling process, referred to as the parent, except for the
       following points:
やった!
カテゴリ: