Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

PID?

Status
Not open for further replies.

august

MIS
Aug 24, 2000
150
PH
what mean by this?

kill -1 PID

what is PID? where can i find this?

THANKZ!
August
agencisa@yahoo.com
 
Hi,

PID stands for Process IDentifier. Each process has a unique number given to it so that the system can identify them. You can see most of your processes running, by typing 'ps -u' at the command prompt. The PID appears in the leftmost column.

The 'kill' command stops a process -be very careful how you use it- defined by the PID.

HTH

PeteH2
 
thank you sir! THANKZ!
August
agencisa@yahoo.com
 
To see all of the processes running on your system, try 'ps -ef'.

To see what each kill -# means, run 'kill -l' (thats a lowercase L, not a one). kill with no options, defaults to 'kill -15', which is a nice way of terminating a program. If a program is locked up and kill -15 doesn't work, then you can try 'kill -9 PID#'. kill -1 is the same as 'kill -HUP'.

ChrisP ------------------------------------------------------------------------------
If somebody helps you, please click the link in the botton left hand corner that says "Mark this post as a helpful/expert post".
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top