如何将ubuntu控制台输出到串口?

前端之家收集整理的这篇文章主要介绍了如何将ubuntu控制台输出到串口?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

如何将ubuntu控制台输出到串口?

Linux使用ubuntu14.04发行版本

操作步骤:


1、修改/etc/default/grub

## Modify this line by leekwen
GRUB_CMDLINE_LINUX="console=tty0 console=ttyS0,115200n8"

## Modify this line by leekwen
GRUB_TERMINAL=serial

## Add this line by leekwen
GRUB_SERIAL_COMMAND="serial --speed=115200 --unit=0 --word=8 --parity=no --stop=1"

2、运行update-grub命令


3、增加配置文件/etc/init.d/ttyS0.conf


leekwen@leekwen:/etc/default$ cat /etc/init/ttyS0.conf
# Add those lines
# ttyS0 - getty
#
# This service maintains a getty on ttyS0 from the point the system is
# started until it is shut down again.


start on stopped rc RUNLEVEL=[2345] and (
not-container or
container CONTAINER=lxc or
container CONTAINER=lxc-libvirt)


stop on runlevel [!2345]


respawn
exec /sbin/getty -L 115200 ttyS0 vt100


# Add those lines End

4、查看设置是否成功

重启电脑
# cat /proc/cmdlineBOOT_IMAGE=/boot/vmlinuz-3.13.0-32-generic root=/dev/sda1 ro console=tty0 console=ttyS2,115200n8
# who
latelee ttyS2


参考地址:

https://help.ubuntu.com/community/SerialConsoleHowto https://help.ubuntu.com/community/Grub2
原文链接:https://www.f2er.com/ubuntu/354600.html

猜你在找的Ubuntu相关文章