It just happened that a md device appeared as out of storage space.
df displayed the following:
|
1 2 3 |
# df -H Dateisystem Size Used Avail Use% Eingehängt auf /dev/md0 6,0T 5,6T 13G 100% /mnt/raid1 |
Calculative there is something wrong because there are still 0,4T left. This is because ext reserves 5% of space per default because you would not be able to login in if there not enough space on the filesystem and you wont be able to enter the rescuing rm command. For my md device, which does not contain any systemfiles there is no need to reserve any space :
|
1 |
#tune2fs -m <em>0</em> /dev/md0 |
Sets the reserve to 0% and the 0,4T are free for usage.
Link to this post!