ps aux filtrado y con cabecera.
[root@fw ~]# ps aux |head -1;ps aux | grep xinetd
USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND
root 4722 0.0 0.0 2720 916 ? Ss 15:27 0:00 xinetd -stayalive -pidfile /var/run/xinetd.pid
[root@fw ~]#
ps aux filtrado, con cabecera y recortado los primeros 90 caracteres para que quede mas ordenado.
[root@fw ~]# ps aux |head -1;ps aux | grep xinetd | grep -v grep | cut -c 1-90
USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND
root 4722 0.0 0.0 2720 916 ? Ss 15:27 0:00 xinetd -stayalive -pidfil
[root@fw ~]#
ps aux ordenado por cpu y mostrando los primeros 3
[root@fw ~]# ps aux --sort=-pcpu | head -4
USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND
root 3234 0.0 0.0 1968 676 ? S 14:52 0:02 hald-addon-storage: polling /dev/hdc
68 3211 0.0 0.4 6052 4264 ? Ss 14:52 0:02 hald
root 590 0.0 0.0 2236 692 ? S
No hay comentarios:
Publicar un comentario