Linux: pstree formatting
Today one of our developers came to me to discuss a problem and I wanted to show him something on one of our Linux machines. To check a process, I ran pstree
and noticed that the formatting of the output was all wrong:
simon@atlas:~$ pstree
initââ¬âacpid
ââapache2âââ10*[apache2]
ââatd
[..]
âârsyslogdâââ3*[{rsyslogd}]
ââsshdââ¬âsshdâââbashâââping
â ââsshdâââbashâââpstree
â ââsshdâââsshdâââsh
ââudevdâââ2*[udevd]
This is obviously just a cosmetical problem and the output is quite hard to read. When encountering something like this, the first guess would be that the encoding is somehow wrong. When checking the environment variables with env
, we find that LANG is set to “en_US.UTF-8”.