How to use MAN pages and Info Pages in linux

Sdílet
Vložit
  • čas přidán 6. 09. 2024
  • linuxstudyguide...
    How to use man pages and info pages to get information on commands for linux.

Komentáře • 6

  • @interwebzful
    @interwebzful Před 6 lety +1

    just learned that (by default) the man pages have vi bindings but info has emacs bindings. worth noting if you're used to one text editor over another and want to navigate intuitively

  • @xrafter
    @xrafter Před 2 lety

    1:11 here what he mean by "that" is actually the "/" key.
    Which opens the search prompt inside "less", the pager program man pages use by default ( if available ).

  • @victoraxelsson4932
    @victoraxelsson4932 Před 9 lety

    Good vid. You should make a follow-up tutorial on how to write a man page using groff (or any equivalent).

  • @j7ndominica051
    @j7ndominica051 Před 7 lety +1

    What is the integer suffix in parentheses shown after the name of a program? The main program is usually given 1 as in man(1) and then supplementary programs may be listed with higher numbers: manpath(5), sox(1), soxformat(7).

    • @xrafter
      @xrafter Před 2 lety

      Look at man(1) for those numbers.
      But here is some of what those numbers mean.
      1 typical user program like cat, echo etc...
      2 system calls manual pages
      3 C functions man pages e.g. printf(3), strlen(3) and some other functions you might find in other languages .
      5 special files like those in /dev
      8 binaries that requires root prevliges like pacman(8), apt(8).

  • @kenfrancis4850
    @kenfrancis4850 Před 6 lety

    Great video, thanks