Skip to content

Instantly share code, notes, and snippets.

View samsammurphy's full-sized avatar
🌍

Sam Murphy samsammurphy

🌍
View GitHub Profile

PART 1 Running a big process in the cloud

1) ssh into server (or practice locally first)

2) start screen

$ screen

# press return to get back to terminal

@samsammurphy
samsammurphy / screen-advanced.md
Last active May 15, 2019 22:01
screen-advanced

An more advanced example of using screen.

sudo apt install screen

PART 1 Running a big process in the cloud

1) ssh into server (or practice locally first)

You can use screen.

sudo apt install screen

Screen allows you to run processes inside of it and leave the process running even if your pipe automatically breaks or you leave the EC2 instance.

When you connect back screen will have kept your processes running.

Here is how to use it..

@samsammurphy
samsammurphy / screen
Created May 15, 2019 13:38
screen usage
You can use screen.
sudo apt install screen
Screen allows you to run processes inside of it and leave the process running even if your pipe automatically breaks or you leave the EC2 instance.
When you connect back screen will have kept your processes running.
Here is how to use it..
You can use screen.
sudo apt install screen
Screen allows you to run processes inside of it and leave the process running even if your pipe automatically breaks or you leave the EC2 instance.
When you connect back screen will have kept your processes running.
Here is how to use it..