Показаны сообщения с ярлыком Unix. Показать все сообщения
Показаны сообщения с ярлыком Unix. Показать все сообщения

четверг, 7 февраля 2013 г.

How to get a full command line for process in Solaris

Using command like
 ps -aef
returns quite full information about processes running. But it cuts command line so you cannot see full command and arguments the process has been started with. To fix that in Solaris (SunOS) use this command:
 usr/ucb/ps -auxww
For example to view all java processes following command is useful:
 /usr/ucb/ps -auxww | grep java | grep -v grep