From 504a55fb2bb51fa0ac5f148c970bd330a4c92c05 Mon Sep 17 00:00:00 2001 From: Claude Date: Tue, 24 Mar 2026 04:23:56 +0000 Subject: [PATCH] Increase screen scrollback buffer to 10000 lines https://claude.ai/code/session_01JR2EMK7rwrZJowpstcaxQ6 --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 5f7038b..920de97 100644 --- a/README.md +++ b/README.md @@ -729,12 +729,12 @@ By default `screen` does not let you scroll up through output. Enable it with co To increase the scrollback buffer for a session (default is only 100 lines): ``` -Ctrl-A then :scrollback 5000 +Ctrl-A then :scrollback 10000 ``` To set it permanently, add this to `~/.screenrc`: ``` -defscrollback 5000 +defscrollback 10000 ``` Useful when reviewing long `show config` or `show interfaces` output during console sessions.