Screen: Difference between revisions
From ArmadeusWiki
No edit summary |
|||
Line 4: | Line 4: | ||
Screen is a full-screen window manager that multiplexes a physical terminal between several processes (see man screen). It can be used as an UART/tty terminal to drive APF*. | Screen is a full-screen window manager that multiplexes a physical terminal between several processes (see man screen). It can be used as an UART/tty terminal to drive APF*. | ||
== Install == | |||
In debian/ubuntu there is a package : | |||
<pre class="host"> | |||
$ sudo apt-get install screen | |||
</pre> | |||
== Connect to tty == | |||
To connect tty simply type : | |||
<pre class="host"> | |||
$ screen /dev/ttyUSB0 115200 | |||
</pre> | |||
Where '/dev/ttyUSB0' is your uart tty connection. | |||
To quit the terminal do ***Ctl-A K*** then 'y'. | |||
== Links == | == Links == |
Revision as of 10:25, 28 September 2015
Introduction
Screen is a full-screen window manager that multiplexes a physical terminal between several processes (see man screen). It can be used as an UART/tty terminal to drive APF*.
Install
In debian/ubuntu there is a package :
$ sudo apt-get install screen
Connect to tty
To connect tty simply type :
$ screen /dev/ttyUSB0 115200
Where '/dev/ttyUSB0' is your uart tty connection.
To quit the terminal do ***Ctl-A K*** then 'y'.