.CentOS7 启动设置串口
1.检查系统是否支持串口
#dmesg | grep tty
[ 0.118093] console [tty0] enabled
[ 0.244114] console [ttyS0] enabled
[ 1.316437] 00:02: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
出现上述enabled, 表示可以设置串口(ttyS0);
2.修改配置文件/etc/default/grub
添加一行:
GRUB_CMDLINE_LINUX_DEFAULT="console=tty0 console=ttyS0,9600"
3.更新grub2配置文件
#grub2-mkconfig -o /boot/grub2/grub.cfg
. 调整启动的Core选项
1.查看当前内核
#uname -r
4.19.89
2.设置
grub2-set-default 'CentOS Linux (4.19.89) 7 (Core)'
3.reboot
来源:oschina
链接:https://my.oschina.net/u/3208144/blog/4518956