Increase screen scrollback buffer to 10000 lines

https://claude.ai/code/session_01JR2EMK7rwrZJowpstcaxQ6
This commit is contained in:
Claude
2026-03-24 04:23:56 +00:00
parent 8705d3d7dd
commit 504a55fb2b
+2 -2
View File
@@ -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.