June 2025
M T W T F S S
 1
2345678
9101112131415
16171819202122
23242526272829
30  

Categories

June 2025
M T W T F S S
 1
2345678
9101112131415
16171819202122
23242526272829
30  

Find pid in Solaris 10

Find pid in Solaris 10

If you do not know the pid of a process, you can use “pidof” command in Linux. In case of Solaris, its not available.

Here’s how you can find it:

#ps -ef | grep nscd | grep -v grep | cut -c12-19
123

Here, it will find the pid of nscd. the cut command will cut characters from 12 to 19 from output of ‘ps -ef’ command.
or

#ps -ef | grep nscd | grep -v grep | awk ‘{print $2}’

Here, we use awk to print second column of ps.

Leave a Reply

You can use these HTML tags

<a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong>