如何更改安装映像以使用 COM 作为默认控制台?

如何更改安装映像以使用 COM 作为默认控制台?

我想避免连接键盘以便set tty com0在安装过程中输入引导加载程序。

如何更改图像本身com0以默认用作 tty?

答案1

将图像附加为循环设备,安装它,然后添加线条boot.conf

vnconfig -c vnd0 install69.img
mount /dev/vnd0a /mnt/
echo "stty com0 115200" >> /mnt/etc/boot.conf
echo "set tty com0" >> /mnt/etc/boot.conf
umount /mnt/
vnconfig -u vnd0

相关内容