技术解析
https://stackoverflow.com/questions/39360643/how-to-make-debian-in-qemu-only-use-one-driver-for-stdvga
在 qemu 里虚拟 debian ,用的-vga std
,这个可以用 vesa 驱动,也可以 modesetting 驱动( https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/)
在 debian 里,貌似你必须安装一种驱动,而在有两个驱动的情况下,用Xorg -configure
生成xorg.conf
会有number of created screens does not match number of detected device
错误( https://forums.freebsd.org/threads/50112/)
我应该就是这种情况。所以我要不然禁用 modesetting ,要不然删 vesa 。不过由于 vesa 删了 apt 会安装别的驱动,所以,我想的是禁用 modesetting ,所以我在 append 那里添加了nomodeset
,不过重启之后 modesetting 还是有,有人知道怎么解决么。。。