Como aumentar as linhas Scrollback na edição do servidor Ubuntu (14.04.2)?

12

Eu posso ver apenas linhas limitadas no terminal usando shift + pageup . Na versão desktop do Ubuntu, existe a opção de tornar ilimitadas as linhas de rolagem. como fazê-lo na versão do servidor Ubuntu. por favor sugira.

    
por shail 15.12.2015 / 10:26

1 resposta

12

A melhor opção seria usar um multiplexador de terminal como screen ou tmux , que são mais fáceis de configurar.

A outra maneira seria configurar o console framebuffer , editando /etc/default/grub e alterando GRUB_CMDLINE_LINUX para incluir fbcon=scrollback:<value>[k] , em que <value> é o tamanho em kilobytes que você deseja atribuir ao buffer. De os documentos do kernel :

C. Boot options

         The framebuffer console has several, largely unknown, boot options
         that can change its behavior.

1. fbcon=font:<name>

        Select the initial font to use. The value 'name' can be any of the
        compiled-in fonts: VGA8x16, 7x14, 10x18, VGA8x8, MINI4x6, RomanLarge,
        SUN8x16, SUN12x22, ProFont6x11, Acorn8x8, PEARL8x8.

    Note, not all drivers can handle font with widths not divisible by 8,
        such as vga16fb.

2. fbcon=scrollback:<value>[k]

        The scrollback buffer is memory that is used to preserve display
        contents that has already scrolled past your view.  This is accessed
        by using the Shift-PageUp key combination.  The value 'value' is any
        integer. It defaults to 32KB.  The 'k' suffix is optional, and will
        multiply the 'value' by 1024.

Se 32 KB não for suficiente, tente 256k . Ou algum outro valor. Tentativa e erro, eu acho.

    
por muru 15.12.2015 / 10:38