modprobe:致命:找不到模块 fbcon。创建的屏幕数量与检测到的设备数量不匹配

modprobe:致命:找不到模块 fbcon。创建的屏幕数量与检测到的设备数量不匹配

我正在使用 debian。我最近清除了 X11 和 xcfe4 并重新安装了它们,但每当我启动时,Xorg --configure我都会得到以下信息:

(++) Using config file: "/root/xorg.conf.new"
(==) Using system config directory "/usr/share/X11/xorg.conf.d"
modprobe: FATAL: Module fbcon not found in directory /lib/modules/$kernel
intel: waited 2020 ms for i915.ko driver to load
Number of created screens does not match number of detected devices.
Configuration failed.
(EE) Server terminated with error (2). Closing log file.

也许问题出在内容上xorg.conf.new?该文件的片段:

Section "ServerLayout"
  Identifier     "X.org Configured"
  Screen      0  "Screen0" 0 0
  Screen      1  "Screen1" RightOf "Screen0"
  InputDevice   "Mouse0" "CorePointer"
  InputDevice   "Keyboard0" "CoreKeyboard"
EndSection

答案1

只是随机地,我在这个小时遇到了这个问题,输出完全相同。

我自己用内核命令行“[...] nomodeset i915.modeset=0”禁用了模式集

作为https://askubuntu.com/a/137482甚至更多https://askubuntu.com/a/193417建议,建议使用modeset。

当我重新启用模式集时,驱动程序运行良好。

xorg.confPS:今天,您通常不使用 randr 扩展来配置显示器(因此“ xrandr”或“ arandr”命令或显示管理器配置工具)。看https://wiki.archlinux.org/index.php/Xorg#Monitor_settingshttps://wiki.archlinux.org/index.php/Multihead

相关内容