what is the default signal kill in unix?
Answers were Sorted based on User's Feedback
Answer / saket kale
kill is a command used to send a signal to a process which
we want to terminate.The message sent is the termination
signal, which requests that the process exit.
The default signal sent is SIGTERM.
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / robin bhan
kill is an internal command used in UNIX . If a command takes more time to get executed than expected, then the user can terminate that program by giving the PID(process id) of that program.
ex. $ sort count.txt ( 'enter')
669 (PID of program sort count.txt returned by kernel)
$
in order to kill or terminate this program command is given as
$ kill 669 ('enter')
$
(above dollar prompt indicates program is terminated)
| Is This Answer Correct ? | 2 Yes | 2 No |
Answer / kirus
kill PID
if the pid is 12
kill 12
it will kill the PID 12 if the user is owner of that PID.
The kill cmd sends the signal 15 and th Process terminates
| Is This Answer Correct ? | 0 Yes | 0 No |
How i'll delete a particular line from the file? Please give answer as soon as possible. Thanks in advance.
fork in unix ?
How do I find previous commands in unix?
How to display no of records in oracle using unix command?
How do you find which version and name of unix you are using at the command prompt?
The command grep first second third /usr/you/myfile a) prints lines containing the words first, second or third from the file /usr/you/myfile b) searches for lines containing the pattern first in the files second, third, and /usr/you/myfile and prints them c) searches the files /usr/you/myfiel and third for lines containing the words first or second and prints them d) replaces the word first with the word second in the files third and /usr/you/myfile e) None of the above
What does this command do? Cat food 1 > kitty
Briefly, how do you install Oracle software on UNIX.
what are the different hardwares available?
Which unix command to make a new directory?
How to add content of one file into another file at the beginning
Write a command to find all of the files which have been accessed within the last 30 days.