2020年9月8日 星期二

Enable Serial Console on CentOS/RHEL 7/ Debian

方法一

編輯 /etc/default/grub 加入以下設定
GRUB_CMDLINE_LINUX_DEFAULT="console=tty0 console=ttyS0,115200n8"
GRUB_TERMINAL=serial
GRUB_SERIAL_COMMAND="serial --speed=115200 --unit=0 --word=8 --parity=no --stop=1"

重建 grub.cfg
grub2-mkconfig -o /boot/grub2/grub.cfg

方法二
編輯 /etc/default/grub

GRUB_CMDLINE_LINUX="quiet console=tty0 console=ttyS0,115200"

重建 grub
# debian based
update-grub

# redhat based
grub2-mkconfig --output=/boot/grub2/grub.cfg


沒有留言: