Como definir mais linhas para rolar para trás, no modo de texto?

2

Eu quero rolar para trás mais de 10.000 linhas no terminal linux do modo de texto. Como há uma opção unlimit em gnome-terminal , então eu acho que isso também é possível no modo de texto?

    
por Xiè Jìléi 27.12.2010 / 07:02

2 respostas

2

Você pode aumentar o tamanho do buffer de rolagem alterando a configuração do kernel, recompilar e reinstalar o novo kernel. EM menuconfig

Drivers de dispositivos - > Suporte gráfico - > Suporte ao driver de exibição do console

config VGACON_SOFT_SCROLLBACK_SIZE                                                                                                  
       int "Scrollback Buffer Size (in KB)"                                                                                         
       depends on VGACON_SOFT_SCROLLBACK                                                                                            
       range 1 1024                                                                                                                 
       default "64"                                                                                                                 
       help                                                                                                                         
         Enter the amount of System RAM to allocate for the scrollback                                                              
         buffer.  Each 64KB will give you approximately 16 80x25                                                                    
         screenfuls of scrollback buffer
    
por 27.12.2010 / 10:43
1

Eu acredito que não pode ser feito no modo de texto: link

You can't increase the amount of scrollback, because it is implemented using the video memory to store the scrollback text. You may be able to get more scrollback in each virtual console by reducing the total number of VC's. See linux/tty.h.

    
por 27.12.2010 / 08:29