Linux Screen Play.

by Computothought in Circuits > Linux

4322 Views, 5 Favorites, 0 Comments

Linux Screen Play.

Screenshot - 05042012 - 01:46:31 PM.png
cs.png
This is actually not a play, but a neat trick you can use when accessing a remote nix server. One of the most challenging occurrences is when you as a system administrator have to leave a server to go do something else. You freak in terror because you feel that you can not. You can not leave the machine logged in. Here is a way to release what you are doing on the server including logging out and then coming back to it later.

$ man screen

for more info.

Note: You can do this locally, but more often than not it is used remotely.

Install the Software.

Screenshot-Synaptic Package Manager .png
Screenshot-PuTTY Configuration.png
Screenshot-oesrvr1 - PuTTY.png
Screenshot-eddie@oesrvr1.comcast.net: ~-5.png
You should have this installed on all machines it is such a wonderful tool.

$ sudo apt-get install screen

or maybe

$ sudo yum install screen

Since you are working remotely from the command line using the package manager is usually not an option.

Note: You could install Putty on your MSWindows machines and do the same thing after installing screen on the server. Putty is also available for other platforms.

Downloads

Now Lets Login to a Server.

Screenshot-eddie@oesrvr104: ~-Desktop.png
Screenshot-eddie@oesrvr1.comcast.net: ~.png
Assuming you have already set up ssh keys set up. (if not see: https://www.instructables.com/id/Linux-setup-for-SSH-password-less-login/).

Unless you are using Putty, go to a terminal and ssh into the server.

$ ssh servername

The you should get something like this if all went well.

you@servername:~$ _

if you have not already done so install screen  as in step 1.

Let's Use Screen.

Screenshot-eddie@oesrvr1.comcast.net: ~-1.png
Getting ready ahead of time. If you know you are going to start a program or a process that will take a long time is the best time to use screen. If you have been in information technology, you know you will get interrupted.

Here we go:

Typically you’ll execute a command or shell-script as shown below from the command.

$ Linux-command-to-be-executed

$ ./Linux-shell-script-to-be-executed

Instead, use the screen command as shown below.

$ screen Linux-command-to-be-executed

$ screen ./Linux-shell-script-to-be-executed

Ok, you program is now running. Doing a system update takes a while and is the perfect candidate for screen. such as:

$ sudo apt-get update && sudo apt-get upgrade

Detach the Process.

Screenshot-eddie@oesrvr1.comcast.net: ~-2.png

This is where you can let the process go and go to something else or even log out and come back to it.

Once you’ve used the screen command, you can detach it from the terminal using any one of the following method.

Screen Detach Method 1: Detach the screen using CTRL+A d

When the command is executing, press CTRL+A followed by d to detach the screen.

Screen Detach Method 2: Detach the screen using -d option

When the command is running in another terminal, type the command as following.

$ screen -d SCREENID
Either case you will come back to a screen prompt.

List Screens in Progress.

Screenshot-eddie@oesrvr1.comcast.net: ~-3.png
You can actually have several screen processes running at the same time so you need to know what is going on.

On terminal 1 you did the following:

$ screen ./myscript.sh

From terminal 2 you can view the list of all screen processes. You can also detach it from terminal 2 as shown below.

$ screen -ls
There is a screen on:
	4491.pts-2.FC547	(Attached)
1 Socket in /var/run/screen/S-sathiya.

$ screen -d 4491.pts-2.FC547
[4491.pts-2.FC547 detached.]
Fail safe:
$ screen -wipe


Get Back In.

Screenshot-screen(1) - Linux man page - Mozilla Firefox.png
You have detached a screen you were working on and logged out (NOT SHUT DOWN). Now you want to get back in and you have already used the "screen ls" command to see what processes are running.

 $ screen -r 4491.pts-2.FC547  What is really neat is that you can log in from any machine, not the original system and  restart the screen process after you have re-logged in.  
Now you are back to work. The screen command has a zillion options. This was just to get your feet wet.

Nice starter reference: http://www.rackaid.com/resources/linux-screen-tutorial-and-how-to/.

Overview:

Multiple Windows.

screen1.png
Screen, like many windows managers, can support multiple windows. This is very useful for doing many tasks at the same time without opening new sessions. As a systems manager, I often have four or five SSH sessions going at the same time. In each of the shell, I may be running two or three tasks. Without screen, that would require 15 SSH sessions, logins, windows, etc. With screen, each system gets its own single session and I use screen to manage different tasks on that system.

To open a new window, you just use “Ctrl-A” “c”. This will create a new window for you with your default prompt. For example, I can be running top and then open a new window to do other things. Top stays running! It is still there. To try this for yourself, start up screen and then run top. (Note: I have truncated some screens to save space.)

Start top

 Mem:   506028K av,  500596K used,    5432K free,            0K shrd,   11752K buff     Swap: 1020116K av,   53320K used,  966796K free                       393660K cached 
 PID USER     PRI  NI  SIZE  RSS SHARE STAT %CPU %ME      6538 root      25   0  1892 1892   596 R    49.1  0.3      6614 root      16   0  1544 1544   668 S    28.3  0.3      7198 admin     15   0  1108 1104   828 R     5.6  0.2 

Now open a new window with “Ctrl-A” “c”

 [admin@ensim admin]$  

To get back to top, use “Ctrl-A “n”

 Mem:   506028K av,  500588K used,    5440K free,            0K shrd,   11960K buff     Swap: 1020116K av,   53320K used,  966796K free                       392220K cached 
 PID USER     PRI  NI  SIZE  RSS SHARE STAT %CPU %ME      6538 root      25   0  1892 1892   596 R    48.3  0.3      6614 root      15   0  1544 1544   668 S    30.7  0.3 

You can create several windows and toggle through them with “Ctrl-A” “n” for the next window or “Ctrl-A” “p” for the previous window. Each process will keep running while your work elsewhere.

A Walkthrough.

Screenshot from 2014-11-15 23:52:28.png
Screenshot from 2014-11-15 23:53:10.png
Screenshot from 2014-11-15 23:53:38.png
Screenshot from 2014-11-15 23:56:31.png
Screenshot from 2014-11-15 23:59:09.png
Screenshot from 2014-11-16 00:04:26.png
Screenshot from 2014-11-16 00:06:00.png
Screenshot from 2014-11-16 00:11:44.png
Screenshot from 2014-11-16 00:13:41.png
Screenshot from 2014-11-16 00:15:31.png

Starting Linux Screen

Screen is started from the command line just like any other command: [root@office ~]# screen

Note: you do not have to be root to use it and good security suggests you only use root as a last resort.

You are now inside of a window within screen. This functions just like a normal shell except for a few special characters.

Control Command

Command: “Ctrl-a”

Screen uses the command “Ctrl-a” that’s the control key and a lowercase “a” as a signal to send commands to screen instead of the shell.

For example, “Ctrl-a” then “?”.

Key bindings are the commands the screen accepts after you hit “Ctrl-a”. You can reconfigure these keys to your liking using a .screenrc file, but I just use the defaults.

Creating Windows

Command: “Ctrl-a” “c”.

To create a new window, you just use “Ctrl-a” “c”.

This will create a new window for you with your default prompt. Your old window is still active.

For example, I can be running top and then open a new window to do other things. Top stays running! It is still there. To try this for yourself, start up screen and then run top.

Now open a new window with: “Ctrl-a” “c”

Your top window is still running you just have to switch back to it.

Switching Between Windows

Command: “Ctrl-a” “n”

Screen allows you to move forward and back. In the example above, you could use “Ctrl-a “n” to get back to top. This command switches you to the next window.

The windows work like a carousel and will loop back around to your first window.

You can create several windows and toggle through them with “Ctrl-a” “n” for the next window or “Ctrl-a” “p” for the previous window.

Each process will keep running until you kill that window.

Detaching From Screen

Command: “Ctrl-a” “d”

Detaching is the most powerful part of screen. Screen allows you to detach from a window and reattach later. If your network connection fails, screen will automatically detach your session! Note this is great when you have run screen on another system and you have to get away or to shut your system down without bothering the system you were attached to.

You can detach from the window using “Ctrl-a” “d”.

This will drop you into your shell.

All screen windows are still there and you can re-attach to them later.

This is great when you are using rsync for server migration.

Reattach to Screen

If your connection drops or you have detached from a screen, you can re-attach by just running:

$ screen -r

This will re-attach to your screen.

However, if you have multiple screens you may get this:

If you get this, just specify the screen you want.

$ screen -r 27153.pts-11.oelt02

Logging Your Screen Output

As a consultant, I find it important to keep track of what I do to someone’s server. Fortunately, screen makes this easy.

Using “Ctrl-a” “H”, creates a running log of the session.

Screen will keep appending data to the file through multiple sessions. Using the log function is very useful for capturing what you have done, especially if you are making a lot of changes. If something goes awry, you can look back through your logs.

Getting Alerts

Screen can monitor a window for activity or inactivity. This is great if you are downloading large files, compiling, or waiting for output.

If you are waiting for output from a long running program, you can use “Ctrl-a” “M” to look for activity. Screen will then flash an alert at the bottom of the page when output is registered on that screen.

I use this when running a command that takes a long time to return data. I can just fire up the command, switch to another window and not have to keep switching back to check the status.

You can also monitor for inactivity. Why use this?

If you are downloading a large file or compiling a program, you can be notified when there is no more output. This is a great signal to when that job is done. To monitor for silence or no output use “Ctrl-A” “_”.

Locking Your Screen Session

If you need to step away from your computer for a minute, you can lock your screen session using “Ctrl-a” “x”. This will require a password to access the session again.

Stopping Screen

When you are done with your work, I recommend you stop the session instead of saving it for later. To stop screen you can usually just type exit from your shell. This will close that screen window. You have to close all screen windows to terminate the session.

You should get a message about screen being terminated once you close all windows. [screen is terminating]

Alternatively, you can use “Ctrl-a” “k”. You should get a message if you want to kill the screen.