You need to use the following key combination to scroll up and look at your data under GNU screen. First press:
CTRL-A
Next press:
[
This will activate copy mode in GNU/screen. Now, you can scroll up/down and look at your data. Use the following keys:
- CTRL-u and CTRL-d scroll the display up/down by the specified amount of lines while preserving the cursor position. (Default: half screen-full).
- CTRL-b and C-f scroll the display up/down a full screen.
From the man page - following movement keys can be used in copy mode:
h, j, k, l move the cursor line by line or column by column.
0, ^ and $ move to the leftmost column, to the first or last non-whitespace character on the line.
H, M and L move the cursor to the leftmost column of the top, center or bottom line of the window.
+ and - positions one line up and down.
G moves to the specified absolute line (default: end of buffer).
| moves to the specified absolute column.
w, b, e move the cursor word by word.
B, E move the cursor WORD by WORD (as in vi).
C-u and C-d scroll the display up/down by the specified amount of lines while preserving the cursor position. (Default: half screen-full).
C-b and C-f scroll the display up/down a full screen.
g moves to the beginning of the buffer.
% jumps to the specified percentage of the buffer.
For searching use the following vi like syntax:
- /SearchWord - Vi-like search forward.
- ?SearchWord - Vi-like search backward.
See screen man page for more information:
$ man screen
You should follow me on twitter here or grab rss feed to keep track of new changes.
Featured Articles:
- 30 Handy Bash Shell Aliases For Linux / Unix / Mac OS X
- Top 30 Nmap Command Examples For Sys/Network Admins
- 25 PHP Security Best Practices For Sys Admins
- 20 Linux System Monitoring Tools Every SysAdmin Should Know
- 20 Linux Server Hardening Security Tips
- Linux: 20 Iptables Examples For New SysAdmins
- Top 20 OpenSSH Server Best Security Practices
- Top 20 Nginx WebServer Best Security Practices
- 20 Examples: Make Sure Unix / Linux Configuration Files Are Free From Syntax Errors
- 15 Greatest Open Source Terminal Applications Of 2012

- My 10 UNIX Command Line Mistakes
- Top 10 Open Source Web-Based Project Management Software
- Top 5 Email Client For Linux, Mac OS X, and Windows Users
- The Novice Guide To Buying A Linux Laptop



![Screen Command: Set Baud Rate [ Terminal Communication ]](http://s0.cyberciti.org/uploads/faq/2013/02/screen-baud-rate-output-150x150.jpg)









{ 2 comments… read them below or add one }
I always use Ctrl+A Esc, then just use the arrows and PageUp/PageDown to move through the scroll buffer (then just press Esc again to get out of copy mode). To me, that’s a little more intuitive than h/j/k/l and Ctrl+u/Ctrl+d.
+1