SIGXFSZ (25)SIGXFSZ (25) — File Size Limit Exceeded
The process attempted to create a file larger than allowed.
EEXISTA file creation operation failed because a file with the specified name already exists.
An operation requiring that a file not exist was attempted on an existing file. This occurs with O_CREAT | O_EXCL flags in open(), when calling mkdir() on an existing directory, or creating a symlink where one already exists.
Check if the file exists before creating it. Use O_CREAT without O_EXCL if overwriting is acceptable. Remove the existing file first if appropriate.
SIGXFSZ (25)The process attempted to create a file larger than allowed.
E2BIGThe total size of the argument list and environment variables passed to exec() exceeds the system limit.
EIOA physical or low-level I/O error occurred during a read or write operation.
ENOTDIRA component used as a directory in a pathname is not actually a directory.
EMFILEThe per-process limit on the number of open file descriptors has been reached.
SIGINT (2)An interrupt signal was sent, typically by pressing Ctrl+C in the terminal.