I just learned that you can scroll back in the console with.shift page up and pg down.
I love it. I can only scroll up a little and was wondering.why? If anybody can help.
Thank u




Code: Select all
│ CONFIG_VGACON_SOFT_SCROLLBACK_SIZE:
│
│ Enter the amount of System RAM to allocate for the scrollback
│ buffer. Each 64KB will give you approximately 16 80x25
│ screenfuls of scrollback buffer
│
│ Symbol: VGACON_SOFT_SCROLLBACK_SIZE [=64]
│ Type : integer
│ Range : [1 1024]
│ Prompt: Scrollback Buffer Size (in KB)
│ Defined at drivers/video/console/Kconfig:37
│ Depends on: HAS_IOMEM [=y] && VT [=y] && VGACON_SOFT_SCROLLBACK [=y]
│ Location:
│ -> Device Drivers
│ -> Graphics support
│ -> Console display driver support
│ -> VGA text console (VGA_CONSOLE [=y])
│ -> Enable Scrollback Buffer in System RAM (VGACON_SOFT_SCROLLBACK [=y]) Code: Select all
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.Your text console may be 80x25, but mine is 1280/8x1024/16=160x64.John R. Graham wrote:A screen and a half? Dude, this is a text console. 256KiB is enough for over 100 pages of 80x25 text console.
Code: Select all
# Console display driver support
#
CONFIG_VGA_CONSOLE=y
CONFIG_VGACON_SOFT_SCROLLBACK=y
CONFIG_VGACON_SOFT_SCROLLBACK_SIZE=1024
CONFIG_DUMMY_CONSOLE=y
CONFIG_FRAMEBUFFER_CONSOLE=y
CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY=y
# CONFIG_FRAMEBUFFER_CONSOLE_ROTATION is not set