Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to stop a screen process in linux?

I am running a script on a remote server. I ran the script in screen, however I need to stop it before it completes since I need to update the script. I can easily detach from screen, however, is there a way to kill a screen process?

like image 269
David Avatar asked Jun 10 '11 04:06

David


People also ask

How do I close all screen sessions in Linux?

To run it, call killd . This will kill all screen sessions, detached or not.


1 Answers

CTRL+a and then 'k' will kill a screen session.

like image 101
Nik Avatar answered Oct 24 '22 23:10

Nik