As a follow up of my related question, is it possible to create a file without metadata? Or alternatively, can I remove all metadata of a given file?
This is quite a "philosophical issue". If this were possible, then, given my previous question, it would be possible to create an "infinite" number of files within a finite space disk. This is surely an experiment worth trying.
For example, creating 100 empty files in my 3 year old system:
lucho@lucho-HP:~test/$ time seq -f "%04.0f" 100 | xargs -I "{}" touch test"{}".txt
real 0m0.231s
user 0m0.000s
sys 0m0.032s
Thus, in one second, I can create roughly 400 files. So, in 8 hours (say, whilst sleeping), I can create 11 million files. Not much but you get the idea.
/dev/sdb3
...). Files are just a convenient abstraction provided by some OSes. Read Operating Systems : Three Easy Pieces – Basile Starynkevitch Jul 24 '17 at 19:37