About 271,000 results
Open links in new tab
  1. filesystems - What is a Superblock, Inode, Dentry and a File? - Unix ...

    8 In simplicity, dentry and inode are the same thing, an abstraction of file or directory. The differences between dentry and inode are that dentry is used to facilitate directory-specific …

  2. filesystems - What is an inode? - Unix & Linux Stack Exchange

    18 "inode" is the informal term that refers to whatever on-disk chunk of data a Unix-file-system uses to hold the information pertaining to a single file. An "inode" traditionally holds the block …

  3. How inodes numbers are assigned - Unix & Linux Stack Exchange

    Jul 7, 2021 · Two known facts: In linux, moving a file from one location to another on the same file system doesn't change the inode (the file remains at "the same place", only the …

  4. Find where inodes are being used - Unix & Linux Stack Exchange

    Basically an inode is used for each file on the filesystem. So running out of inodes generally means you've got a lot of small files laying around. So the question really becomes, "what …

  5. How can I increase the number of inodes in an ext4 filesystem?

    The options -T usage-type, -N number-of-inodes, or -i bytes-per-inode can all set the number of inodes. I generally use -i, after comparing the output of du -s and find | wc -l for a similar …

  6. Is it possible to rename a file or directory using the inode?

    Oct 4, 2015 · But the inode doesn't contain a pointer to the directory entry, it only contains (pointers to) the file metadata (timestamps, permissions, etc.) and the file contents. For a file …

  7. Quickly find which file (s) belongs to a specific inode number

    I know of this command: find /path/to/mountpoint -inum <inode number> but it is a very slow search, I feel like there has to be a faster way to do this. Does anybody know a faster method?

  8. files - How to see information inside inode data structure - Unix ...

    Apr 28, 2016 · I can do an ls -li to see a file's inode number, but how can I list information inside a particular inode by using that inode number.

  9. What is the difference between "inode size" and "Bytes per inode"

    Dec 15, 2014 · 23 Below information is taken from man page,I would like to know the difference between bytes-per-inode and Inode-size? -i bytes-per-inode Specify the bytes/inode ratio. …

  10. What's the difference between modification date and inode's ...

    Change: Last time the file's inode was changed. The change time includes things like modifying the permissions and ownership, while the modify time refers specifically to the files contents.