sudo cp -nv /etc/default/grub /etc/default/grub.orig
sudo cp -nv /boot/grub/grub.cfg /boot/grub/grub.cfg.orig
sudo vim /etc/default/grub
/etc/default/grub
:
## remove (optional):
# GRUB_TIMEOUT_STYLE=hidden
## change:
# (optional)
# GRUB_TIMEOUT=0
GRUB_TIMEOUT=2
## add:
GRUB_TERMINAL="console serial"
GRUB_SERIAL_COMMAND="serial --speed=115200"
## change:
# GRUB_CMDLINE_LINUX=""
GRUB_CMDLINE_LINUX="console=tty1 console=ttyS0,115200"
Wenn GRUB_TIMEOUT
1 oder mehr (oder -1) ist, kann das Menü durch Drücken der Taste Escape </ kbd> geöffnet werden, auch wenn GRUB_TIMEOUT_STYLE = hidden
([ref.](Https: /) /www.gnu.org/software/grub/manual/grub/html_node/Simple-configuration.html)).
Durch Hinzufügen von "GRUB_TERMINAL =" console serial "" wird das GRUB-Menü sowohl auf der VGA-Konsole als auch auf dem seriellen Terminal angezeigt.
Wenn die Ausgabe der seriellen Konsole nicht angezeigt wird, lesen Sie das Handbuch (https://www.gnu.org/software/grub/manual/grub/html_node/serial.html) und stimmen Sie die Hardware mit GRUB_SERIAL_COMMAND = ab Versuchen Sie, "serial --speed = 115200"
zu ändern.
GRUB_CMDLINE_LINUX =" console = tty1 console = ttyS0,115200 "
ist Linux-Kernel-Befehlszeilenparameter ) ist. Ähnlich wie bei "GRUB_TERMINAL =" console serial "" ermöglicht diese Option die Eingabe / Ausgabe von tty sowohl auf der VGA-Konsole (tty1) als auch auf der seriellen Konsole (ttyS0).
Dies kann auch beim Booten im GRUB-Menü geändert werden.
Führen Sie nach dem Bearbeiten von "/ etc / default / grub" "sudo update-grub" aus, um "/ boot / grub / grub.cfg" zu generieren, das beim Booten tatsächlich geladen wird. Es wird intern grub-mkconfig -o / boot / grub / grub.cfg
ausgeführt.
Original (je nach Umgebung stammt dies von QEMU):
# If you change this file, run 'update-grub' afterwards to update
# /boot/grub/grub.cfg.
# For full documentation of the options in this file, see:
# info -f grub -n 'Simple configuration'
GRUB_DEFAULT=0
GRUB_TIMEOUT_STYLE=hidden
GRUB_TIMEOUT=0
GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
GRUB_CMDLINE_LINUX_DEFAULT=""
GRUB_CMDLINE_LINUX=""
# Uncomment to enable BadRAM filtering, modify to suit your needs
# This works with Linux (no patch required) and with any kernel that obtains
# the memory map information from GRUB (GNU Mach, kernel of FreeBSD ...)
#GRUB_BADRAM="0x01234567,0xfefefefe,0x89abcdef,0xefefefef"
# Uncomment to disable graphical terminal (grub-pc only)
#GRUB_TERMINAL=console
# The resolution used on graphical terminal
# note that you can use only modes which your graphic card supports via VBE
# you can see them in real GRUB with the command `vbeinfo'
#GRUB_GFXMODE=640x480
# Uncomment if you don't want GRUB to pass "root=UUID=xxx" parameter to Linux
#GRUB_DISABLE_LINUX_UUID=true
# Uncomment to disable generation of recovery mode menu entries
#GRUB_DISABLE_RECOVERY="true"
# Uncomment to get a beep at grub start
#GRUB_INIT_TUNE="480 440 1"
Überarbeitet:
# If you change this file, run 'update-grub' afterwards to update
# /boot/grub/grub.cfg.
# For full documentation of the options in this file, see:
# info -f grub -n 'Simple configuration'
GRUB_DEFAULT=0
GRUB_TIMEOUT=2
GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
GRUB_CMDLINE_LINUX_DEFAULT=""
GRUB_CMDLINE_LINUX="console=tty1 console=ttyS0,115200"
# Uncomment to enable BadRAM filtering, modify to suit your needs
# This works with Linux (no patch required) and with any kernel that obtains
# the memory map information from GRUB (GNU Mach, kernel of FreeBSD ...)
#GRUB_BADRAM="0x01234567,0xfefefefe,0x89abcdef,0xefefefef"
# Uncomment to disable graphical terminal (grub-pc only)
#GRUB_TERMINAL=console
#GRUB_TERMINAL="console serial"
GRUB_TERMINAL="console serial"
GRUB_SERIAL_COMMAND="serial --speed=115200"
# The resolution used on graphical terminal
# note that you can use only modes which your graphic card supports via VBE
# you can see them in real GRUB with the command `vbeinfo'
#GRUB_GFXMODE=640x480
# Uncomment if you don't want GRUB to pass "root=UUID=xxx" parameter to Linux
#GRUB_DISABLE_LINUX_UUID=true
# Uncomment to disable generation of recovery mode menu entries
#GRUB_DISABLE_RECOVERY="true"
# Uncomment to get a beep at grub start
#GRUB_INIT_TUNE="480 440 1"
diff:
sudo apt install python3-pip
pip3 install icdiff
~/.local/bin/icdiff /etc/default/grub.orig /etc/default/grub
~/.local/bin/icdiff /boot/grub/grub.cfg.orig /boot/grub/grub.cfg
Der Unterschied von / boot / grub / grub.cfg
ist groß, also überprüfen Sie ihn bitte mit Ihren eigenen Augen.
Nach dem Neustart wird dmesg auf der seriellen Konsole abgespielt und die Anmeldeaufforderung wird angezeigt.
<img alt = "Creative Commons License" style = "Rahmenbreite: 0" src = "https" //i.creativecommons.org/l/by/4.0/88x31.png "/>
Diese Arbeit ist <eine rel =" Lizenz "href =" http://creativecommons.org/ Lizenzen / von / 4.0 / "> Creative Commons Attribution 4.0 International License .
Recommended Posts