我在阅读《linux系统编程》以及查看网上关于系统函数的博客时,老是看到诸如“详细使用请查看man手册”等等。作为linux菜鸟,刚使用linux时,我们都知道可以用man命令来查看linux命令的用法,但是却不知道怎么查看系统调用函数的用法。

方法是: man 2 read 或者是man 3 read。

中间的数字是什么意思呢?是man的分卷号,原来man分成很多部分,分别是:

1 用户命令, 可由任何人启动的。

2 系统调用, 即由内核提供的函数。

3 例程, 即库函数,比如标准C库libc。

4 设备, 即/dev目录下的特殊文件。

5 文件格式描述, 例如/etc/passwd。

6 游戏, 不用解释啦!

7 杂项, 例如宏命令包、惯例等。

8 系统管理员工具, 只能由root启动。

9 其他( Linux 特定的), 用来存放内核例行程序的文档。

n 新文档, 可能要移到更适合的领域。

o 老文档, 可能会在一段期限内保留。

l 本地文档, 与本特定系统有关的。

要查属于哪一部分的,就用哪一部分的编号在命令之前。

一般系统没有man命令,如果只安装man,就只能查看第一部分(命令),如

yum install man -y

如果要查看函数,也就是后面的部分,还需要安装man-pages

yum install man-pages -y

现在,就可以使用man 2 read 查看系统调用read的用法。

[root@develop ~]# man 2 read |cat
READ(2)                    Linux Programmer’s Manual                   READ(2)NAMEread - read from a file descriptorSYNOPSIS#include <unistd.h>ssize_t read(int fd, void *buf, size_t count);DESCRIPTIONread()  attempts to read up to count bytes from file descriptor fd intothe buffer starting at buf.If count is zero, read() returns zero and has  no  other  results.   Ifcount is greater than SSIZE_MAX, the result is unspecified.RETURN VALUEOn success, the number of bytes read is returned (zero indicates end offile), and the file position is advanced by this number.  It is not  anerror  if  this  number  is smaller than the number of bytes requested;this may happen for example because fewer bytes are actually  availableright  now  (maybe  because we were close to end-of-file, or because weare reading from a pipe, or from a terminal),  or  because  read()  wasinterrupted  by  a  signal.  On error, -1 is returned, and errno is setappropriately.  In this case it is left unspecified  whether  the  fileposition (if any) changes.ERRORSEAGAIN The  file descriptor fd refers to a file other than a socket andhas been marked non-blocking (O_NONBLOCK), and  the  read  wouldblock.EAGAIN or EWOULDBLOCKThe  file  descriptor  fd refers to a socket and has been markednon-blocking   (O_NONBLOCK),   and   the   read   would   block.POSIX.1-2001  allows  either error to be returned for this case,and does not require these constants to have the same value,  soa portable application should check for both possibilities.EBADF  fd is not a valid file descriptor or is not open for reading.EFAULT buf is outside your accessible address space.EINTR  The  call  was interrupted by a signal before any data was read;see signal(7).EINVAL fd is attached to an object which is unsuitable for reading;  orthe  file  was  opened  with  the  O_DIRECT flag, and either theaddress specified in buf, the value specified in count,  or  thecurrent file offset is not suitably aligned.EINVAL fd  was  created  via  a call to timerfd_create(2) and the wrongsize buffer was given to read(); see timerfd_create(2) for  fur-ther information.EIO    I/O  error.  This will happen for example when the process is ina background process group, tries to read from  its  controllingtty,  and  either it is ignoring or blocking SIGTTIN or its pro-cess group is orphaned.  It may also occur when there is a  low-level I/O error while reading from a disk or tape.EISDIR fd refers to a directory.Other errors may occur, depending on the object connected to fd.  POSIXallows a read() that is interrupted after reading some data  to  return-1  (with  errno set to EINTR) or to return the number of bytes alreadyread.CONFORMING TOSVr4, 4.3BSD, POSIX.1-2001.NOTESOn NFS file systems, reading small amounts of data will only update thetimestamp  the  first  time,  subsequent  calls may not do so.  This iscaused by client side attribute caching, because most if  not  all  NFSclients  leave  st_atime  (last file access time) updates to the serverand client side reads satisfied from the client’s cache will not  causest_atime updates on the server as there are no server side reads.  Unixsemantics can be obtained by disabling client side  attribute  caching,but in most situations this will substantially increase server load anddecrease performance.Many file systems and disks were considered to be fast enough that  theimplementation  of  O_NONBLOCK  was deemed unnecessary.  So, O_NONBLOCKmay not be available on files and/or disks.SEE ALSOclose(2), fcntl(2), ioctl(2), lseek(2), open(2), pread(2),  readdir(2),readlink(2), readv(2), select(2), write(2), fread(3)COLOPHONThis  page  is  part of release 3.22 of the Linux man-pages project.  Adescription of the project, and information about reporting  bugs,  canbe found at http://www.kernel.org/doc/man-pages/.Linux                             2009-02-23                           READ(2)
[root@develop ~]#

而且,以前在使用man查看命令时,看到诸如 ioctl(2)这种表述,原来就算是指在man的卷2里查看。

SEE ALSOclose(2), fcntl(2), ioctl(2), lseek(2), open(2), pread(2),  readdir(2),readlink(2), readv(2), select(2), write(2), fread(3)

如果觉得英语看起来费劲,可以安装中文支持

yum install man-pages-zh-CN -y

然后再修改系统默认语言

LANG=zh_CN.UTF-8  #临时生效

然后,再查看就是中文了。但是,中文只是部分支持,有些命令和函数也没有中文。

由于系统命令read 和 系统调用read() 重名了,以前只安装了man命令时,输入 "man read" 显示的是命令read的用法,现在安装了man-pages之后,使用man 2 read 是查看系统调用read()的用法。

不过,这毕竟是少数情况,对于只有系统调用名称的,如fork(), 输入"man  fork" 也是显示的系统调用fork()的用法。

当然,除了在系统上查看man手册,也可以从官网查看

http://man7.org/linux/man-pages/index.html

linux下使用man命令查看系统调用相关推荐

  1. [Linux] Linux下使用du命令查看空间使用情况

    一.摘要 敬告,本文所有博客将迁移到博客园刘好念的博客!!!以后将逐渐弃用CSDN. 本文介绍了在linux下使用du命令查看文件夹所占空间大小的命令,包括查看当磁盘中所有文件占空间大小.前目录的所占 ...

  2. linux下使用free命令查看实际内存占用

    linux下在终端环境下可以使用free命令看到系统实际使用内存的情况,一般用free -m方式查看内存占用情况(兆为单位).而系统实际可用内存是不是free部分呢,不是的,系统实际内存占用以及可用内 ...

  3. linux下使用free命令查看实际内存占用(可用内存)

    linux下在终端环境下可以使用free命令看到系统实际使用内存的情况,一般用free -m方式查看内存占用情况(兆为单位).而系统实际可用内存是不是free部分呢,不是的,系统实际内存占用以及可用内 ...

  4. linux cpu使用率1200%,linux下用top命令查看cpu利用率超过100%

    今天跑了一个非常耗时的批量插入操作..通过top命令查看cpu以及内存的使用的时候,cpu的时候查过了120%..以前没注意..通过在top的情况下按大键盘的1,查看的cpu的核数为4核. 通过网上查 ...

  5. Linux下使用ps命令查看进程状态【ps常用命令】

    Linux中的ps命令是Process Status的缩写.ps命令用来列出系统中当前运行的那些进程.ps命令列出的是当前那些进程的快照,就是执行ps命令的那个时刻的那些进程,如果想要动态的显示进程信 ...

  6. Linux下使用ps命令查看某个进程文件的启动位置

    使用ps命令,使用方法如下: ps -ef|grep shutdown 其中shutdown为关机命令,但是此时查看到的只是相对路径,没有绝对路径,如: 其中4170就是进程ID,此时进入[/proc ...

  7. linux命令查看时间属于哪个地区,详解Linux下用date命令查看和计算包含时区的时间戳...

    在Linux中 1.执行date命令,可以查看当前的时间: 2014年 09月 03日 星期三 10:29:00 CST 其中CST是中国标准时间(China Standard Time)的缩写 2. ...

  8. Linux下如何用命令查看内存占用情况!(建议收藏)

    点击上方[全栈开发者社区]→右上角[...]→[设为星标⭐] 1. 通过free命令看Linux内存 total:总内存大小. used:已经使用的内存大小(这里面包含cached和buffers和s ...

  9. Linux下通过jstat命令查看jvm的GC情况

    jstat命令可以查看堆内存各部分的使用量,以及加载类的数量.命令的格式如下: jstat [-命令选项] [vmid] [间隔时间/毫秒] [查询次数]  注意!!!:使用的jdk版本是jdk8. ...

最新文章

  1. glide默认的缓存图片路径地址_手写一个静态资源中间件,加深了解服务器对文件请求的缓存策略...
  2. codeforces 688D D. Remainders Game(中国剩余定理)
  3. 计算机理论python字符串作业_[Python基础 ] Day_07_作业参考答案
  4. java,类的构造方法
  5. 150929-拖延高于懒-HTML(End)
  6. ORACLE 10g创建单实例 ASM
  7. Atitit. Derby的使用总结attilax
  8. (day 38 - 双指针) 剑指 Offer 52. 两个链表的第一个公共节点
  9. linux环境ubuntu: pushd: not found
  10. 河北省第三届研究生数学建模B题(二等)交通检测器数据质量控制及预测
  11. 什么是强化学习?(贝尔曼方程)
  12. arch yaourt安装
  13. Django路由写法
  14. 线性回归、逻辑回归大概差别
  15. css溢出隐藏 /超出隐藏(补充CSS样式穿透 scoped 问题)
  16. 购买抖币显示苹果服务器异常,抖音刷礼物为什么显示当前设备不支持苹果应用内支付?...
  17. JavaScript的运行机制,简单大白话讲解.
  18. Hbase系列---内置过滤器
  19. 基于PyTorch深度学习无人机遥感影像目标检测、地物分类及语义分割
  20. 美剧自动更新下载程序(需要迅雷vip会员的离线下载功能)

热门文章

  1. Kaggle账号注册时验证码无法显示问题解决方法
  2. Markdown与LATEX
  3. 关于小程序的bindscrolltolower事件失效,已解决
  4. 乡镇卫生院计算机编制待遇怎么样,三甲医院VS乡镇卫生院事业编,选哪个?
  5. 微波信号发生器典型应用——TFN TG115 微波信号发生器 100KHz-15GHz
  6. 仿微信的录制小视频功能
  7. 现代控制原理专业词汇中英文对照
  8. 达梦数据库之TEMP表空间
  9. blender使用小技巧
  10. CSS3 SVG波浪线条动画js特效