30

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 5

45

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.

1
  • If your right click is used for paste like mine, shift+MiddleClick gets you the preference menu.
    – takobaba
    Commented Jan 31, 2020 at 3:04
9

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

7

You may want infinite scrollback:

In ~/.config/terminator/config:

[profiles]
  [[default]]
    scrollback_infinite = True
3

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

2

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
  • ~/.config/terminator/config is missing. I tried to reinstall terminator but it's still not there. Commented Jun 10, 2012 at 9:25
  • 1
    @tr3quart1sta: Just create it with that content, then. Commented Jun 10, 2012 at 13:43
  • 1
    Also, in Gnome, you open a terminal, select the drop down menu -> Preferences->blq blq and on one of the tabs there is a dialog box, asking how many wines to remember. The default 256 is ridiculous !
    – Vorac
    Commented Jan 27, 2013 at 8:37

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .