如何设置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

接下来需要解决这一问题

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。