PROGRAMS

screen

Article by:
Date Published:
Last Modified:

Overview

screen can be used as a terminal, to send and receive information from a serial port.

Pausing The Terminal And Scrolling Through Past Data

You can pause the output from screen with:

1
Ctrl-A, Esc 

This enters copy mode. You can then use your mouse wheel or the arrow keys to scroll through the received data. Note that any data received while in copy mode will be lost.

Killing Screen Processes

If you exit screen and go back to the terminal using Ctrl-C, the screen process is actually still running (it’s just detached). This will prevent you from opening the same device with screen again until it’s actually killed. You can still see it if you list all screen processes. To list all screen processes, type the command screen -ls.

To kill a specific process, use:

1
$ screen -X -S [session number of process] quit

The session number is the number listed in front of the device name when you run screen -ls. This even destroys detached screen process, in which the screen kill command cannot.


Authors

Geoffrey Hunter

Dude making stuff.

Creative Commons License
This work is licensed under a Creative Commons Attribution 4.0 International License .

Tags

    comments powered by Disqus