Skip to main content

Questions tagged [kill]

kill - Send a specified signal to a process or process group.

1 vote
1 answer
48 views

I'm learning linux permissions and confused about the permissions for killing a process. First, from kill(2) manpage: For a process to have permission to send a signal it must either be privileged (...
Elucidase's user avatar
-4 votes
2 answers
281 views

In the below shell script I have list of process IDs which need to be killed. When killing a process I am getting kill: 1234567: no such process error even after checking if the process id existence ...
Harry's user avatar
  • 239
0 votes
2 answers
120 views

I have a running process on localhost on port 5000. I have tried kill - 9 <PID> which it works for that PID but it starts a new process with a new PID instead. What's the issue here? I'll put ...
Ajit Sharma's user avatar
9 votes
2 answers
3k views

How do I kill a process that cannot be killed? user@kubuntu22:~$ ps -ef |grep smbd nobody 3532354 1 0 16:30 ? 00:00:00 /usr/sbin/smbd --foreground --no-process-group user@kubuntu22:~$ ...
codywohlers's user avatar
0 votes
1 answer
234 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
  • 136
0 votes
1 answer
73 views

For example, if I ssh to the server at multiple office computer, how can I conveniently kill those ssh at home when I ssh to the server machine?
Lucar's user avatar
  • 1
1 vote
1 answer
250 views

I'm aware that because of PID-reuse on Unix-like kernels, signals can be delivered to the wrong process if they are sent after the PID has already been reaped. Discussion of what follows will probably ...
Ani Agarwal's user avatar
0 votes
1 answer
564 views

I have been experimenting with bluetoothctl and blueman. I have closed the window of blueman. I have also typed quit in bluetoothctl's command line interface. I have also run systemctl stop bluetooth. ...
Tim's user avatar
  • 107k
0 votes
1 answer
55 views

Problem: Need to run several process, especially it will be “tail -f log.log >> wrile_log.log” proces to collect log. Commands can be run at the different time for same log file. This is not ...
Alex Alex's user avatar
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
-1 votes
3 answers
92 views

I have 3 java process running on my host - i access the host by a ssh client. Some one of that process freezed and i need kill that pid process to re-start it I know the name of the file, but i dont ...
Felipe Braga Comonier's user avatar
1 vote
0 answers
23 views

I'm working on a SGE linux cluster and beginners often run memory/resource consuming tools on the login node instead of using qsub or qlogin ( https://gridscheduler.sourceforge.net/htmlman/htmlman1/...
Pierre's user avatar
  • 1,793
0 votes
1 answer
189 views

I what to be able to restart ConnMan from within Node-RED. That service runs with its own user nodered. When I SSH into the device as the nodered user and type nodered@pi:~$ sudo /etc/init.d/connman ...
Norbert's user avatar
  • 131
0 votes
2 answers
124 views

Forgot to mention, running on Suse Tumbleweed, Desktop is KDE Plasma. I have in my bin directory a symbolic link to mpv, $ ls -l bin/Play lrwxrwxrwx 1 boffi users 12 Feb 11 12:33 bin/Play -> /usr/...
gboffi's user avatar
  • 1,406
0 votes
1 answer
71 views

If I run ./script.sh &, where script is the following: #!/bin/bash echo "hello" sleep 30 echo "hello again" sleep 30 touch /root/foo.txt Then I use ps au, to identify the "...
Thomas Stokes's user avatar

15 30 50 per page
1
2 3 4 5
46