How can I see more output lines in terminal?

If I give a command that has a lot of output lines in terminal, about 400, I can only see the last ~200 if I scroll up to the top. How can I go further up and see more output lines? I don't want to use tee and copy the output to a text file. I use Openbox and Terminator.

How can I see the terminal output from two days ago?

5 Answers

Terminator's configuration (including buffer size), is stored in its configuration file, usually found at ~/.config/terminator/config.

You may configure the buffer size by modifying the configuration file to include the following. Be sure to include the section headings, as these are necessary.

[profiles] [[default]] scrollback_lines = 5000

Reference:


You may also modify Terminator configuration by right-clicking in a Terminator window, and selecting Preferences. The relevant preference is in Profiles > Default > Scrolling > Scrollback.

1

I had to do this in the terminal preferences for Ubuntu 14.04

Edit > Profile Preferences > Scrolling > Scrollback:

I set mine to 2048 (512 is default), close, restart terminal

You may want infinite scrollback:

In ~/.config/terminator/config:

[profiles] [[default]] scrollback_infinite = True

You can configure the scrollback buffer size in ~/.config/terminator, e.g.:

scrollback_lines = 5000

This will set the buffer size to 5000 lines.

3

You could pipe the output to more (or less) and page through the results.

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like