即使把图形界面删掉了,仍然是默认输出到显示器上的,这样nographic选项就没啥用。为了使其产生作用,在虚拟机中将/etc/default/grub
里的
GRUB_CMDLINE_LINUX=""
改成
GRUB_CMDLINE_LINUX="console=tty0 console=ttyS0"
然后
# debian系
sudo update-grub
# Centos 8
sudo grub2-mkconfig -o /boot/grub2/grub.cfg
这样输出就会被重定向到终端了。然后
sudo qemu-system-x86_64 -m 4096 -enable-kvm deepin.img -nographic
就起作用了。