How to display longer username in `ps`

Have you ever had the need to show the full username in ps output? Here is how. Normally in Bash, the ps output truncates an username to 7 characters and a + sign, e.g IUSR_60+. In cases when you absolutely need the full username in ps, this can be pretty annoying. Here is how to display longer usernames in ps:

To display 20 characters, use user:20:

ps axo user:20Code language: Bash (bash)

If you also want the PID of the running process, add ,pid: ps axo user:20,pid. You can even add pmem of memory:

ps axo user:20,pid,pmemCode language: Bash (bash)

Play with it, learn the different options and use what’s best in each case.

Jan Reilink

Hi, my name is Jan. I am not a hacker, coder, developer or guru. I am merely an application manager / systems administrator, doing my daily thing at Embrace - The Human Cloud. In the past I worked for clidn and Vevida. With over 20 years of experience, my specialties include Windows Server, IIS, Linux (CentOS, Debian), security, PHP, websites & optimization. I blog at https://www.saotn.org.