Horje
run screen on background linux terminal Code Example
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




Shell

Related
gitlab ee version check Code Example gitlab ee version check Code Example
windows scan for corrupt files Code Example windows scan for corrupt files Code Example
install devtools Code Example install devtools Code Example
apache start stop restart Code Example apache start stop restart Code Example
kubectl set context not working Code Example kubectl set context not working Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
10