|
Prev: how to get mac address of network interfaces
Next: Concatentating Solaris-10 DVD downloded from sun.com.
From: nish.parikh on 7 Feb 2005 19:52 Hi, I have some process running. When I do a ps -aef |grep <username>, I see those processes. However I dont see the full name and commandline of the processes. It gets truncated. Is there any way to see the full command line of my processes? I am using unix (solaris). Thanks, Nish.
From: Jorgen Moquist on 7 Feb 2005 20:14 nish.parikh(a)gmail.com wrote: > Hi, > > I have some process running. > > When I do a ps -aef |grep <username>, I see those processes. However I > dont see the full name and commandline of the processes. It gets > truncated. > > Is there any way to see the full command line of my processes? > > I am using unix (solaris). > > Thanks, > Nish. > yes, /usr/ucb/ps -auxwwwg or /usr/ucb/ps -auxwwwge will view your envinments for the process. /jýrgen
From: barts on 8 Feb 2005 00:08 Use pargs (1)... it will tell you everything about the command line, environment, etc. - Bart
From: Jeff H on 8 Feb 2005 10:23 /usr/ucb/ps -axwwwu | grep username nish.parikh(a)gmail.com wrote: > Hi, > > I have some process running. > > When I do a ps -aef |grep <username>, I see those processes. However I > dont see the full name and commandline of the processes. It gets > truncated. > > Is there any way to see the full command line of my processes? > > I am using unix (solaris). > > Thanks, > Nish.
From: nish.parikh on 8 Feb 2005 13:31
Thanks Jeff. Your reply was very very useful. Where can I find pargs by the way? I could not find it anywhere on my solaris machine. Thanks, nish. Jeff H wrote: > /usr/ucb/ps -axwwwu | grep username > > > nish.parikh(a)gmail.com wrote: > > Hi, > > > > I have some process running. > > > > When I do a ps -aef |grep <username>, I see those processes. However > I > > dont see the full name and commandline of the processes. It gets > > truncated. > > > > Is there any way to see the full command line of my processes? > > > > I am using unix (solaris). > > > > Thanks, > > Nish. |