linux man 手冊各個章節的意義和用法

2021-09-08 07:57:12 字數 923 閱讀 4050

linux的man很強大,該手冊分成很多section,使用man時可以指定不同的section來瀏覽,各個section意義如下:

1 - commands

2 - system calls

3 - library calls

4 - special files

5 - file formats and convertions

6 - games for linux

7 - macro packages and conventions

8 - system management commands

9 - 其他

解釋一下:

1是普通的命令

2是系統呼叫,如open,write之類的(通過這個,至少可以很方便的查到呼叫這個 函式,需要加什麼標頭檔案)

3是庫函式,如printf,fread

4是特殊檔案,也就是/dev下的各種裝置檔案

5是指檔案的格 式,比如passwd, 就會說明這個檔案中各個欄位的含義

6是給遊戲留的,由各個遊戲自己定義

7是附件還有一些變數,比如向 environ這種全域性變數在這裡就有說明

8是系統管理用的命令,這些命令只能由root使用,如ifconfig

想要指定 section就直接在man的後面加上數字,比如:

man 1 ls

man 3 printf

sudo apt-get install manpages

sudo apt-get install manpages-de

sudo apt-get install manpages-de-dev

sudo apt-get install manpages-dev

使用漢化linux man的手冊

有時覺得看英文的man手冊,看的速度特別的慢,於是,每當想乙個命令的用法時,就到google上去找。久而久之,電腦中那麼好乙個大百科全書就白白的浪費掉了,為什麼我們不把它利用起來,給它的常用命令漢化一下呢?免得我們把網際網路攪得個底朝天還不知道能不能找到。好了,讓我們來看看如何漢化。man page...

Linux man 手冊使用說明

linux的man很強大,該手冊分成很多section,使用man時可以指定不同的section來瀏覽,各個section意義如下 1 commands 2 system calls 3 library calls 4 special files 5 file formats and convert...

Linux man手冊使用指南

使用linux下man已經很久了。但只是大概知道其內容的存放目錄,以及man number 中mumber的含義。今天需要新增c man page。順便將man的內容作乙個較詳細的了解。0.man後面數字的含義 之前sam在查詢c庫函式時,會使用 man 3 func 在查詢系統呼叫時,則使用 ma...