Skip to content

Tarik Billa

  • Web Development
    • html
    • vue.js
    • laravel
    • css
    • javascript
    • jquery
    • node.js
    • php
    • asp.net
  • Programming
    • python
    • java
    • c
    • c++
    • c#
  • git
  • android

inode

Inode vs Vnode Difference

June 8, 2023 by Tarik

To add something to this: The best explanation I could find for a vnode is here on the FreeBSD docs. For the more academically minded there is also the original paper that introduced the concept, [Vnodes: An Architecture for Multiple File System Types in Sun UNIX], which provides a much more in depth resource. That … Read more

Categories operating-system Tags filesystems, inode, operating-system, vfs Leave a comment

Where are all my inodes being used?

March 24, 2023 by Tarik

If you don’t want to make a new file (or can’t because you ran out of inodes) you can run this query: for i in `find . -type d `; do echo `ls -a $i | wc -l` $i; done | sort -n as insider mentioned in another answer, using a solution with find will … Read more

Categories linux Tags inode, linux, posix, unix Leave a comment

How to Free Inode Usage?

September 27, 2022 by Tarik

If you are very unlucky you have used about 100% of all inodes and can’t create the scipt. You can check this with df -ih. Then this bash command may help you: sudo find . -xdev -type f | cut -d “https://stackoverflow.com/” -f 2 | sort | uniq -c | sort -n And yes, this … Read more

Categories linux Tags inode, linux, memory-management, unix Leave a comment

Tarik Billa

Software Engineer
tarikbilla@gmail.com
+8801884414000
  • Reuse a hash in YAMLApril 17, 2024
  • Dockerfile: how to redirect the output of a RUN command to a variable?April 16, 2024
  • How to cd to a directory with spaces in the directory name?April 16, 2024
  • Maximum MIME type length when storing the type in a databaseApril 16, 2024
  • What is the difference between Unit, Integration, Regression and Acceptance Testing?April 16, 2024
© 2026 Tarik Billa