By Justin MillerMarch 4th 2021

For all of us who have run tasks that run for what seems like forever, there's a solution! Installing screen to your Linux terminal will allow you to start that lengthy process in its own virtual shell instance so that you can pop back to another terminal window and continue your productivity.

Introduction

Screen is referred to as a terminal multiplexer because it allows you to start a screen session while opening an unlimited number of additional "virtual terminals" within the same session. These processes will continue to run in their own window even if you are disconnected from your session.

Installation

Installation is easy, just enter the following commands. Remember that we must update our package repository before beginning to avoid any issues.

# sudo apt update

Next, we can install screen.

# sudo apt install screen

After the installation is complete, you only need to type screen into the terminal to begin.

# screen

To view a list of commands, enter the following to open the help screen:

Press Ctrl+a, and type a question mark

Ctrl+a ?

Conclusion

Screen will help you increase your productivity and make better use of your time while coding. Try it and become a Linux master!

)