How to Check Available Disk Space on Linux
When a program appends data to a file, you need to know how much space remains on the partition containing that file. This determines whether the file can grow or if you’re about to hit a capacity limit. Quick answer To find available space for a file, use df: df -B1 /mnt/logs/app-log.log | tail -1…
