The standard setup is that the size of the directory /home/test1 is only limited by the size of the partition and its file system and the space allowed for standard users to access.
5% of the space in an ext4 file system is reserved for the system and for running tasks with elevated permissions.
See man mkfs.ext4,
-m reserved-blocks-percentage
Specify the percentage of the filesystem blocks reserved for the super-user. This avoids fragmentation, and allows
root-owned daemons, such as syslogd(8), to continue to function
correctly after non-privileged processes are prevented from
writing to the filesystem. The default percentage is 5%.
The minimum amount of space a user needs is:
The maximum amount of space a user can take is 95% of the entire partition unless you set disk quotas per user or unless you change the number of reserved blocks to allow them to take more or less than 95%...
The standard setup is that the size of the directory
/home/test1
is only limited by the size of the partition and its file system and the space allowed for standard users to access.5% of the space in an
ext4
file system is reserved for the system and for running tasks with elevated permissions.See
man mkfs.ext4
,