Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

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
Comment

PREVIOUS NEXT
Code Example
Shell :: git pull from previous commit 
Shell :: another apache web server is running 
Shell :: bash merge pdf 
Shell :: ubuntu find folder through terminal 
Shell :: ubuntu wifi with no internet 
Shell :: npm not found in zsh 
Shell :: how to remove stuff from git 
Shell :: How to clear or delete Terminal history in linux 
Shell :: install termius ubuntu 
Shell :: discard all changes 
Shell :: git exclude file 
Shell :: flutter android sdkmanager not found 
Shell :: powershell get all computers in ou 
Shell :: chkconfig: command not found 
Shell :: curl install docker-compose linux 
Shell :: set head of branch at specific commit 
Shell :: whats home directory variable linux 
Shell :: how to install kivy.app 
Shell :: htpasswd add user 
Shell :: cp folders 
Shell :: bash move file 
Shell :: docker map folder 
Shell :: batch multiline command 
Shell :: how to upgrade to wsl 2 
Shell :: Hello, World! 
Shell :: delete lines text file linux 
Shell :: yum clean all 
Shell :: how to merge branch to master 
Shell :: bash if is symlink 
Shell :: ldap query powershell 
ADD CONTENT
Topic
Content
Source link
Name
7+5 =