有次一个客户在使用ps命令时,发现部分用户显示的是用户名,有些用户显示的是UID,跟我说一定要让UID列全部显示完整的用户名,没办法,客户就是上帝啊。
经过测试,发现所有只显示UID的用户名都是名字长度超过8位的账户,也就是说ps命令UID列默认只能显示8位(含8位)的用户名,超过8位就显示UID,但是ps可以自定义显示列的宽度。
再测试下结果吧:
创建了两个账户,分别是12345678(UID:505)、123456789(UID:506),用ps命令查看进程
- [root@server2 ~]# ps -ef
- UID PID PPID C STIME TTY TIME CMD
- root 1 0 0 02:34 ? 00:00:00 init [3]
- root 2 1 0 02:34 ? 00:00:03 [migration/0]
- root 3 1 0 02:34 ? 00:00:00 [ksoftirqd/0]
- root 4 1 0 02:34 ? 00:00:03 [migration/1]
- root 5 1 0 02:34 ? 00:00:00 [ksoftirqd/1]
- root 6 1 0 02:34 ? 00:00:09 [events/0]
- root 2380 17 0 02:35 ? 00:00:00 [kmpath_handlerd]
- root 2402 17 0 02:35 ? 00:00:00 [kjournald]
- root 2425 4238 0 08:54 ? 00:00:00 sshd: root@pts/2
- root 2429 2425 0 08:54 pts/2 00:00:00 -bash
- oracle 2505 1 0 08:55 ? 00:00:00 ora_cjq0_lanv
- root 2580 4238 0 08:56 ? 00:00:00 sshd: 123456789 [priv]
- 506 2585 2580 0 08:56 ? 00:00:00 sshd: 123456789@pts/3
- 506 2590 2585 0 08:56 pts/3 00:00:00 -bash
- root 2716 4238 0 09:09 ? 00:00:00 sshd: 12345678 [priv]
- 12345678 2723 2716 0 09:09 ? 00:00:00 sshd: 12345678@pts/4
- 12345678 2730 2723 0 09:09 pts/4 00:00:00 -bash
8位用户名的账户能够显示完整的用户名,9位用户名的账户就显示了UID
通过修改UID列名来调整UID列显示宽度:
- [root@server2 ~]# ps -o ruser=useruser9 -e -o pid,ppid,c,stime,tty,time,cmd
- useruser9 PID PPID C STIME TT TIME CMD
- root 1 0 0 02:34 ? 00:00:00 init [3]
- root 2 1 0 02:34 ? 00:00:03 [migration/0]
- oracle 588 1 0 05:25 ? 00:00:00 ora_q001_lanv
- root 596 17 0 02:35 ? 00:00:00 [kauditd]
- root 2363 4238 0 08:53 ? 00:00:00 sshd: root@pts/1
- root 2425 4238 0 08:54 ? 00:00:00 sshd: root@pts/2
- root 2429 2425 0 08:54 pts/2 00:00:00 -bash
- root 2580 4238 0 08:56 ? 00:00:00 sshd: 123456789 [priv]
- 123456789 2585 2580 0 08:56 ? 00:00:00 sshd: 123456789@pts/3
- 123456789 2590 2585 0 08:56 pts/3 00:00:00 -bash
- root 2716 4238 0 09:09 ? 00:00:00 sshd: 12345678 [priv]
- 12345678 2723 2716 0 09:09 ? 00:00:00 sshd: 12345678@pts/4
- 12345678 2730 2723 0 09:09 pts/4 00:00:00 -bash
- root 2807 2429 0 09:15 pts/2 00:00:00 ps -o ruser=useruser9 -e -o pid,ppid,c,stime,tty,time,cmd
UID列名被改为useruser9,这样就能显示9位的用户名了。
阅读(8333) | 评论(2) | 转发(0) |