EDQUOTEDQUOT — Disk Quota Exceeded
The user's disk quota for the filesystem has been exceeded.
SIGTERM (15)A graceful termination request was sent to the process.
The default signal sent by kill and system shutdown. Unlike SIGKILL, SIGTERM can be caught and handled for graceful cleanup.
Install a SIGTERM handler for cleanup before exiting. Docker and Kubernetes send SIGTERM before SIGKILL, so handle it promptly.
# Graceful termination
kill <PID>
# Trap SIGTERM in bash
trap 'cleanup; exit 0' TERMEDQUOTThe user's disk quota for the filesystem has been exceeded.
ERANGEThe result of a mathematical function or conversion is too large or too small to be represented.
EINTRA blocking system call was interrupted by a signal before it could complete.
EINPROGRESSA non-blocking connection attempt has been initiated and is still in progress.
SIGKILL (9)The process was unconditionally terminated. This signal cannot be caught, blocked, or ignored.
ENOMEMThe system does not have enough available memory to fulfill the allocation request.