Answers for "run screen on background linux terminal"

0

run screen on background linux terminal

# Install screen
yum install screen

# Initiate a Screen
screen -S <screen name> <command to execute>

# Detach from the screen
CTRL + A, D

# List all the screen currently working
screen -ls

# Reattach to a screen
screen -r <screen name>

# Kill specific screen
screen -X -S <screen name> quit

# Kill all screens
pkill screen
Posted by: Guest on April-20-2020

Code answers related to "run screen on background linux terminal"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language