How to display longer username in ps

Home » GNU/Linux » 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:

Display full username in ps: The ps output truncates usernames to 7 characters and a +. If you need full usernames in Bash ps, here is how.

To display 20 characters, use “user:20“:

ps axo user:20

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,pmem

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

One-time donation

Please take a second to support Sysadmins of the North and donate, your generosity helps!

Jan Reilink
Jan Reilink

In my day to day work, I’m a systems administrator – DevOps / SRE and applications manager at Embrace – The Human Cloud. At Embrace we develop, maintain and host social intranets for our clients. Provide digital services and make working more efficient within various sectors.

Want to support me and donate? Use this link: https://www.paypal.com/paypalme/jreilink.

Articles: 157