18.04.2 服务器 - iKVM 上无视频

18.04.2 服务器 - iKVM 上无视频

我在基于 Supermicro X11SCH-LN4F 的服务器上运行 Ubuntu 18.04 Server,该服务器配有 Xeon E-2176g。该服务器支持 IPMI/iKVM。

我在初始 UEFI 启动期间通过 iKVM 看到了视频输出,但是 Ubuntu 启动后就没有视频了。

USB 安装期间视频运行良好。

我尝试使用 HWE 内核进行安装。

我也尝试了 19.04,只能使用该safe graphics选项进行安装。

结果lshw -c video

$ sudo lshw -c video
  *-display                 
       description: Display controller
       product: Intel Corporation
       vendor: Intel Corporation
       physical id: 2
       bus info: pci@0000:00:02.0
       version: 00
       width: 64 bits
       clock: 33MHz
       capabilities: pciexpress msi pm bus_master cap_list
       configuration: driver=i915 latency=0
       resources: irq:135 memory:90000000-90ffffff memory:80000000-8fffffff ioport:8000(size=64)
  *-display
       description: VGA compatible controller
       product: ASPEED Graphics Family
       vendor: ASPEED Technology, Inc.
       physical id: 0
       bus info: pci@0000:08:00.0
       version: 41
       width: 32 bits
       clock: 33MHz
       capabilities: pm msi vga_controller bus_master cap_list rom
       configuration: driver=ast latency=0
       resources: irq:17 memory:91000000-91ffffff memory:92000000-9201ffff ioport:3000(size=128) memory:c0000-dffff

答案1

已修复!或者至少我有一个解决方法。这看起来像是 ASpeed AST2500 SoC 的驱动程序问题。似乎驱动程序支持Linux 5.2 即将推出

  1. 编辑 grub:
sudo vi /etc/default/grub
  1. 添加nomodesetGRUB_CMDLINE_LINUX,使整行看起来像:
GRUB_CMDLINE_LINUX="nomodeset"
  1. 更新 grub:
sudo update-grub
  1. 重新开始:
sudo shutdown --reboot now

相关内容