Process and Screen
System
To know the owner of the process
ps -ef | grep 63592
Kill a process
kill pid
screen: <sid.sname>
Instruction | Command |
---|---|
List all the screens | screen -ls |
Create/Start a new screen | screen -S sname |
Quit/Terminate a screen | screen -XS sname quit |
Scroll history in the screen | Ctrl + A, ESC |
Detach the screen | Ctrl + A + D |
Attach/Resume the screen | screen -r sid or screen -r sname |
Kill the process with id: sid | kill sid |
Detach an elsewhere running screen | screen -d sid or screen -d sname |
Step by step example:
- screen -S sample
- run some process with stdout output
- ctrl + A, Esc (scroll using up and down key)
- ctrl + A + D (Detach)
- screen -ls
(base) dosisiddhesh@lingolexico:/home/dosisiddhesh$ screen -ls
There is a screen on:
220829.sample (11/17/2023 11:55:27 AM) (Detached)
- screen -r sample (resume)
- ctrl + A + D (Detach)
- screen -XS sample quit (Screen terminated)
- screen -ls
No Sockets found in /run/screen/S-dosisiddhesh.
Please visit : Siddhesh Dosi for more intersting content