Skip to main content

Questions tagged [sigkill]

Filter by
Sorted by
Tagged with
0 votes
1 answer
245 views

According to BASH manual page, When Bash receives a SIGINT, it breaks out of any executing loops. In all cases, Bash ignores SIGQUIT. So if there was a shell script, started from bash shell, to ...
KDM's user avatar
  • 128
4 votes
1 answer
755 views

As far as I understand, once a TCP connection is established, there's no actual flow of data unless one of the two ends actually sends a message, they are both blocked on a call to receive a message. ...
Enlico's user avatar
  • 2,362
4 votes
1 answer
1k views

I have two hotkeys for interactively looking up and killing a process on Linux: bindsym $mod+k exec --no-startup-id \ "ps axo pid,cmd | sed 1d | dmenu -i -l 20 | awk '{print $1}' | xargs kill&...
Fadeway's user avatar
  • 183
2 votes
1 answer
629 views

I am executing and killing a process as follows: python some_script.py &; pid=$!; sleep 5; kill -9 $!; ps -o pid,sid,uid,state,start,command In other words: I execute a script in the background, ...
Alessandro Power's user avatar
2 votes
1 answer
842 views

A new logstash version I'm using can't stop, attempting to connect to Elastic all the time, while it can't (an authentication trouble, I will resolve later). a sudo systemctl stop logstash.service isn'...
Marc Le Bihan's user avatar
-1 votes
1 answer
1k views

My process a.out is starting by a timeout command similar to: timeout 1 ./a.out - < file.txt It runs on a server and I have no control over that because it is part of a shell script that being ...
user174174's user avatar
0 votes
2 answers
1k views

I am trying to overwrite or change the Signals of a process. As I guess there is a table of signals in every process separately. Is there anything like that in the /proc folder? Thank you for your ...
superuser's user avatar
0 votes
1 answer
550 views

As a follow up to this question, I am correct that (4) (quote below) is the farthest I can get ? in my app (a .NET app which runs as a systemd daemon), intercept the kernel signal sent to the process ...
Veverke's user avatar
  • 378
0 votes
2 answers
599 views

So, my situation is this: I have created a launcher, key bindings and an alias that opens GLava and CMus in a drop-down terminal at the same time, using this shell script: #!/bin/bash c=$(ps -e | ...
poutingcavity's user avatar
0 votes
1 answer
401 views

What are differences for running program between sudden cutting of power and SIGKILL? We have microservices that use database. I am tasked with creating automatic test that simulates sudden power off (...
MateuszL's user avatar
  • 103
0 votes
0 answers
480 views

I scanned using ClamAV and found these files: [root@ip-172-31-23-37 ~]# sudo clamscan --infected --recursive --exclude-dir="^/sys" / /tmp/.X25-unix/dota3.tar.gz: Multios.Coinminer.Miner-...
Muhammad Dyas Yaskur's user avatar
0 votes
1 answer
569 views

After entering su when I prompted to enter a password: user@debian:~$ su Password: I can't send SIGSTOP (ctrl+Z) from my keyboard (the same terminal) - nothing happens. So the only way to exit is to ...
z0lupka's user avatar
  • 295
0 votes
1 answer
227 views

Terminator allows custom layouts with a command such as bash -lc 'npm start'; bash However, triggering SIGKILL (CONTROL-C) will kill part of the terminal and mess up your layout. SIGQUIT works but ...
Ray Foss's user avatar
  • 1,052
9 votes
2 answers
13k views

When a Unix-like system is shut down normally, e.g. using halt, shutdown, poweroff etc. or the GUI equivalents, it will try to exit all processes gracefully first by emitting a SIGTERM signal to them. ...
Hugo G's user avatar
  • 360
1 vote
1 answer
4k views

Reading Gilles' answer, SIGHUP is about the same as SIGTERM in terms of harshness, but it has a specific role because it's automatically sent to applications running in a terminal when the user ...
Tim's user avatar
  • 107k
51 votes
1 answer
29k views

When I used killall -9 name to kill a program, the state become zombie. Some minutes later, it stopped really. So, what's happening during those minutes?
haikun he's user avatar
  • 613
6 votes
1 answer
9k views

I know that a process cannot prevent SIGKILL. But is there an external way to temporarily prevent SIGKILL to reach a (specific) process? (something like dropping packets by firewalls).
gopy's user avatar
  • 381
0 votes
1 answer
360 views

I run a Sheevaplug (small ARM server) with Debian 9. It does not have any third-party repos enabled in sources.list / sources.list.d. I have a backup script which runs as root, and uses at. I think ...
sourcejedi's user avatar
  • 53.6k
-1 votes
1 answer
3k views

I have a process, and when I issue ctrl+c in the terminal, it closes the terminal window completely, anybody know why that might be happening? This is how the process is now started: exec "$(dirname ...
Alexander Mills's user avatar
8 votes
3 answers
20k views

I can not kill irq/${nnn}-nvidia by kill -9 or pkill -f -9. Does anyone how to kill or stop those process? (I am using Ubuntu 16.04, if that is relevant.)
TMit's user avatar
  • 83