Posso vedere solo linee limitate sul terminale usando shift+ pageup. nella versione desktop di Ubuntu, c'è un'opzione per rendere illimitate le linee di scorrimento. come farlo nella versione del server Ubuntu. per favore, suggerisci.
Posso vedere solo linee limitate sul terminale usando shift+ pageup. nella versione desktop di Ubuntu, c'è un'opzione per rendere illimitate le linee di scorrimento. come farlo nella versione del server Ubuntu. per favore, suggerisci.
Risposte:
L'opzione migliore sarebbe quella di utilizzare un terminale multiplexer come screen
o tmux
, che sono più facili da configurare.
L'altro modo sarebbe configurare la console framebuffer , modificando /etc/default/grub
e cambiando GRUB_CMDLINE_LINUX
per includere fbcon=scrollback:<value>[k]
, dove si <value>
trova la dimensione in kilobyte che si desidera assegnare per il buffer. Dai documenti del 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 non sono sufficienti, provare 256k
. O qualche altro valore. Prova ed errore, immagino.
Un'altra opzione più coinvolta è la creazione di un kernel con CONFIG_VGACON_SOFT_SCROLLBACK
set.