System Grab Bag

View all TLDR pages from Linux (or from all pages)

namei

Follows a pathname (which can be a symbolic link) until a terminal point is found (a file/directory/char device etc). This program is useful for finding "too many levels of symbolic links" problems. More information: https://manned.org/namei.
  • Resolve the pathnames specified as the argument parameters:
    namei {{path/to/a}} {{path/to/b}} {{path/to/c}}
  • Display the results in a long-listing format:
    namei --long {{path/to/a}} {{path/to/b}} {{path/to/c}}
  • Show the mode bits of each file type in the style of ls:
    namei --modes {{path/to/a}} {{path/to/b}} {{path/to/c}}
  • Show owner and group name of each file:
    namei --owners {{path/to/a}} {{path/to/b}} {{path/to/c}}
  • Don't follow symlinks while resolving:
    namei --nosymlinks {{path/to/a}} {{path/to/b}} {{path/to/c}}

License and Disclaimer

The content on this page is copyright © 2014—present the tldr-pages team and contributors.
This page is used with permission under Creative Commons Attribution 4.0 International License.

While we do attempt to make sure content is accurate, there isn't a warranty of any kind.