![]() |
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| UNIX for Dummies Questions & Answers If you're not sure where to post a UNIX or Linux question, post it here. All UNIX and Linux newbies welcome !! |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| how do you login as sms-svc on a system controller | vinix | SUN Solaris | 1 | 02-04-2008 06:41 AM |
| Prompted for System Password during login | BFLO | HP-UX | 2 | 12-06-2007 01:45 PM |
| Disablin login for system accounts | veccinho | Security | 1 | 11-09-2007 05:32 AM |
| How to check the last login user were doing in the system | raziayub | SUN Solaris | 1 | 04-04-2007 07:44 AM |
| Can Unix Co-Exist with Windows 9X on the same System? | ms73eb | UNIX for Dummies Questions & Answers | 2 | 05-31-2001 11:51 AM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
|||||
|
kill -9 sends signal 9 (SIGKILL) to the process you're pointing it at. This particular signal is untrappable by the process, and it is forced to terminate instantly.
On the other hand, if you did a kill -1 <pid>, it would think it was that the parent process had hung up or disconnected (going back to dumb terminals and/or dialing lines) - it's a SIGHUP signal. There are other signals, and all others can be caught (and ignored or something other than a "kill" will happen - inetd, for instance), but most of the time, there's no reason to use kill -9. For a list of signals, check out "man kill". |
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|