What does errno 59 (EBFONT) mean?

 
Could be also:
ConstantTypeOS
ERROR_UNEXP_NET_ERRWin32 errorWindows
ETOOMANYREFSerrnoMac
ENOTRECOVERABLEerrnoSolaris
SYSTEM_SERVICE_EXCEPTIONBugCheck CodeWindows
Previous Next
EDEADLOCK ENOSTR

EBFONT

EBFONT is a Linux errno value for bad font file format. It is most useful when diagnosing console-font loaders, terminal setup tools, boot scripts, or compatibility code that validates a font before installing it into a kernel console or related low-level text subsystem.

Do not treat this as a missing-file or permission failure. Preserve the exact font file, tool version, target console, encoding assumption, and the operation that parsed the file. A retry will not make malformed font data valid; the useful fix is to supply a supported font format or correct the conversion step that produced it.

Distinguish from

  • ENOENT: the font file path was not found.
  • EACCES: the process could not read the file or update the console.
  • EINVAL: a tool or ioctl rejected an option or parameter relation.

Linux errno(3) · Linux UAPI errno definitions


Looking for a different code? Search another status or error code.