【结贴】如何安装linux programmer's manual?
Tofloor
poster avatar
ever_spark
deepin
2017-10-29 04:55
Author
本帖最后由 ever_spark 于 2017-10-28 21:44 编辑

使用man命令查找read write的写法,发现系统里貌似没有安装linux programmer's manual。
使用的命令是man -k file|grep read
man 2没有内容,同样的命令在centos下是有的,ubuntu12.04下貌似也有

请问有安装的办法吗,谢谢
Reply Favorite View the author
All Replies
avatar
woodelf
deepin
2017-10-29 05:33
#1
安装manpages-dev。







    来自:Mozilla/5.0 (X11; Linux x86_64; rv:56.0) Gecko/20100101 Firefox/56.0  (zh-CN)
    ——2017/10/28 下午9:33:45
    Reply View the author
    avatar
    ever_spark
    deepin
    2017-10-29 05:41
    #2

    谢谢,刚搞定,正准备过来结贴
    Reply View the author
    avatar
    ever_spark
    deepin
    2017-10-29 05:42
    #3
    d5@d5-nb:~$ apt-cache search manpages-dev
    manpages-de-dev - German development manpages
    manpages-dev - Manual pages about using GNU/Linux for development
    manpages-fr-extra - French version of the manual pages


    安装后 manpages-dev

    d5@d5-nb:~$ man -k file|grep read
    __freadable (3)      - interfaces to stdio FILE structure
    __freading (3)       - interfaces to stdio FILE structure
    _llseek (2)          - reposition read/write file offset
    lseek64 (3)          - reposition 64-bit read/write file offset
    pppdump (8)          - convert PPP record file to readable format
    pread (2)            - read from or write to a file descriptor at a given offset
    pread64 (2)          - read from or write to a file descriptor at a given offset
    pwrite (2)           - read from or write to a file descriptor at a given offset
    pwrite64 (2)         - read from or write to a file descriptor at a given offset
    read (2)             - read from a file descriptor
    readahead (2)        - initiate file readahead into page cache
    readelf (1)          - Displays information about ELF files.
    readfile (3am)       - return the entire contents of a file as a string
    readlink (1)         - print resolved symbolic links or canonical file names
    readprofile (8)      - read kernel profiling information
    rwarray (3am)        - write and read gawk arrays to/from files
    Reply View the author