自从升级到14.04,我失去了我的控制台VGA显示输出在我的Ubuntu服务器(没有GUI)。
我的系统是一个基于原子D2700处理器的NAS服务器。不幸的是,这个处理器有一个GMA3600图形芯片组,它不是英特尔,而是PowerVR SGX 545。在我运行Ubuntu12.04时,这个芯片组有一个二进制专有Linux驱动程序,运行良好,但似乎在14.04上不起作用。
lspci | grep VGA
00:02.0 VGA compatible controller: Intel Corporation Atom Processor D2xxx/N2xxx Integrated Graphics Controller (rev 09)除了这个控制台问题之外,服务器的其余部分正常工作:我可以通过ssh访问它,但我希望恢复控制台显示输出,以防出现网络配置问题。
我正在寻找一个解决方案来获得一个基本的控制台输出(不需要GUI图形加速),因为我们通常可以在Linux引导CD或USB键上找到(CloneZilla,.)
是否有一种简单的方法来配置我的系统,以便它使用一个基本的通用通用VGA驱动程序?谢谢
0:02.0 VGA compatible controller [0300]: Intel Corporation Atom Processor D2xxx/N2xxx Integrated Graphics Controller [8086:0be2] (rev 09)
Subsystem: ASRock Incorporation Device [1849:0be2]
Kernel driver in use: gma500
00:1b.0 Audio device [0403]: Intel Corporation NM10/ICH7 Family High Definition Audio Controller [8086:27d8] (rev 02)发布于 2018-05-04 23:07:28
我终于从这个有用而清晰的线程中找到了解决方案:https://ubuntuforums.org/showthread.php?t=2250571
这很简单:只需将gma500_gfx失败的驱动程序列入黑名单。
这可以在GRUB菜单启动时完成,按“e”进行编辑,编辑linux行,在行尾添加modprobe.blacklist=gma500_gfx,就在ro之后
如果要永久将此驱动程序黑名单,请编辑/etc/modprobe.d/blacklist.conf并添加以下行:
blacklist gma500_gfx
https://askubuntu.com/questions/1028869
复制相似问题