About 50 results
Open links in new tab
  1. linux - Where are all my inodes being used? - Stack Overflow

    Dec 7, 2008 · At least the "P.S." solution does not answer to the question "where are all my inodes being used". For example, in my Ubuntu Linux system it finds only /usr/share/man/man3 (which has about …

  2. Intro to Inodes - Linux.org

    Jul 10, 2013 · Inodes The “inode” is sometimes referred to as an index node. But what is it? Basically, it is a file structure on a file system. More easily, it is a “database” of all file information except the file …

  3. linux - How to Free Inode Usage? - Stack Overflow

    I have a disk drive where the inode usage is 100% (using df -i command). However after deleting files substantially, the usage remains 100%. What's the correct way to do it then? How is it possible...

  4. linux - Copy and move's command effect on inode - Stack Overflow

    Jun 13, 2020 · An inode is a collection of metadata for a file, i.e. information about a file, in a Unix/ Unix-like filesystem. It includes permission data, last access/ modify time, file size, etc.

  5. linux - Where are inodes stored at? - Stack Overflow

    Jun 20, 2016 · I recently started learning about the Linux kernel and I just learned about inodes, which are data-structures containing meta-data of a file. Now, how do the OS find the associated inode of a …

  6. operating system - Inode vs Vnode Difference - Stack Overflow

    Dec 7, 2014 · A major difference is the inode is files system while the vnode is not. (In Linux as mentioned above there is both a system-independent inode and a file system-dependent inode) An …

  7. Does symbolic link consume an additional inode? - Linux.org

    Jan 21, 2024 · I understnand that original file will consume an inode (so that's 1), but does the symbolic link itself consume a new separate inode as well (independed of the inode of the original file)? so that …

  8. What is the difference between a symbolic link and a hard link?

    Oct 9, 2008 · The inode is only deleted (or deletable/over-writable) when all links to the inode have been deleted. A symbolic link is a link to another name in the file system.

  9. epoll - What is an anonymous inode in Linux? - Stack Overflow

    Dec 22, 2010 · At least in some contexts, an anonymous inode is an inode without an attached directory entry. The easiest way to create such an inode is as such: int fd = open( "/tmp/file", O_CREAT | …

  10. linux - Maximum number of inodes in a directory? - Stack Overflow

    Is there a maximum number of inodes in a single directory? I have a directory of over 2 million files and can't get the ls command to work against that directory. So now I'm wondering if I've exceeded a limit …