Terminal output scrolling is gone (Headless 11.10 Server, Upgraded from 10.10)
Solution 1:
The behaviour you describe sounds like your terminal was stuck in the full screen "cursor addressing" mode used by tools like less
and vi
.
The mode can become stuck if those programs do not exit cleanly. For instance, if you kill -9
them, or are running them through an ssh
session that disconnects. You can exit this terminal mode by running the following command:
tput rmcup
Or just try browsing a file with less
and quit as normal. You should then have access to your scrollback and the contents of the screen when cursor addressing mode was entered.
Solution 2:
If tput rmcup
does not work, try
tput reset
instead.
Solution 3:
Just reset
alone worked for me.