I only created about 8 million files, then there was no free inode in /dev/sdb1.
[spider@localhost images]$ df -i
Filesystem Inodes IUsed IFree IUse% Mounted on
/dev/sdb1 8483456 8483456 0 100% /home
Someone says can specify the inode count when format the partition.
e.g. mkfs.ext4 -N 1000000000.
I tried but got an error:
"inode_size (256) * inodes_count (1000000000) too big...specify higher inode_ratio (-i) or lower inode count (-N). ".
What's the appropriate inode_ratio value?
I heard the min inode_ratio value is 1024 for ext4.
Is it possible to store one billion files on a single partition? How to? And someone says it will be very slow.