首页 > 代码库 > 如何设置ubuntu系统的串口输出(三)

如何设置ubuntu系统的串口输出(三)

进一步优化/boot/grub/grub.cfg为如下内容:

linux@linux:~$ cat /boot/grub/grub.cfg
set timeout=10
set root='hd0,msdos1'
search --no-floppy --fs-uuid --set=root 2c604c33-d631-4440-b0fc-697bd6f32749
linux   /boot/vmlinuz-3.16.0-23-generic root=UUID=2c604c33-d631-4440-b0fc-697bd6f32749 ro  text console=tty0 console=ttyS0,115200n8
initrd  /boot/initrd.img-3.16.0-23-generic
boot
linux@linux:~$ 


再进一步精简/boot/grub/grub.cfg:


linux@linux:~$ cat /boot/grub/grub.cfg
set timeout=10
set root='hd0,msdos1'
linux   /boot/vmlinuz-3.16.0-23-generic root ro  text console=tty0 console=ttyS0,115200n8
initrd  /boot/initrd.img-3.16.0-23-generic
boot
linux@linux:~$ 

这时候启动就有问题了,问题是:命令行停留在(initramfs),而没有进入到rootfs

接下来需要解决这一问题

如何设置ubuntu系统的串口输出(三)