How to see more output lines in terminal

historyterminalterminator

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?

Best Answer

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: http://manpages.ubuntu.com/manpages/precise/man5/terminator_config.5.html


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.

Related Question