You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

5 lines
259 B

Unprintable characters in kernel logs, when read via /dev/kmsg, are
escaped as \xNN where NN the character's ascii code in hex. Those are
expected to be decoded to results, if they really are
printable. Kernel's idea of nonprintable is "c < 0x20 || c > 127".