我有一台 Lenovo Ideapad 100S 14'' IBR-14'' Intel Celeron CPU N3060 @ 1.60GHz、32GB SSD、4GB RAM,基于 Broadwell 芯片组,运行 FreeBSD 12.0。
我一直在尝试将 xorg 配置为使用 1366x768 的本机高分辨率,但没有成功。
我安装了两个显示驱动程序:
sudo pkg install xf86-video-intel xf86-video-scfb
Intel i950 显示驱动程序出现错误并中止我使用的几种配置组合xrandr
。
scfb/syscons 显示驱动程序仅在 640x480 下工作,并忽略任何有关大小的指令;也无法使用 vesa 显示驱动程序,但没有取得多大成功(vesa 已弃用,或者与 vt 驱动程序的组合错误,没有费心去检查)。
(我尝试在 x.org 配置文件的设备部分中配置“intel”和“scfb”驱动程序)。
如在/usr/local/etc/X11/xorg.conf.d/xorg.conf
Section "Device"
Driver "scfb"
#Driver "intel"
EndSection
英特尔错误与此线程非常相似 -在 Kaby Lake 机器上安装 Debian:X.org 遇到的困难实际上。
该怎么办?
xandr 的输出
答案1
讽刺的是,在 FreeBSD 中,答案与问题中指出的线索非常相似。
您还需要删除(矛盾的是)X.org Intel 视频驱动程序,X 服务器可以使用内核的模式设置功能,而无需单独的视频驱动程序
虽然它指的是 Linux,但 FreeBSD 似乎也发生了同样的情况。
那么它做了什么:
sudo pkg delete xf86-video-intel
也在/boot/loader.rc.local
:
mode 2
(在联想中是 EFI 文本模式,分辨率更高,170 列 x 40 行 - 1366x768 )
实际/usr/local/etc/X11/xorg.conf.d/xorg.conf
使用的是,配置“scfb”显示驱动程序的位置:
Section "ServerLayout"
Identifier "X.org Configured"
Screen 0 "Screen0" 0 0
InputDevice "Mouse0" "CorePointer"
InputDevice "Keyboard0" "CoreKeyboard"
EndSection
Section "Files"
ModulePath "/usr/local/lib/xorg/modules"
FontPath "/usr/local/share/fonts/misc/"
FontPath "/usr/local/share/fonts/TTF/"
FontPath "/usr/local/share/fonts/OTF/"
FontPath "/usr/local/share/fonts/Type1/"
FontPath "/usr/local/share/fonts/100dpi/"
FontPath "/usr/local/share/fonts/75dpi/"
EndSection
Section "Module"
Load "glx"
EndSection
Section "InputDevice"
Identifier "Keyboard0"
Driver "kbd"
EndSection
Section "InputDevice"
Identifier "Mouse0"
Driver "mouse"
Option "Protocol" "auto"
Option "Device" "/dev/sysmouse"
Option "ZAxisMapping" "4 5 6 7"
EndSection
Section "Monitor"
Identifier "Monitor0"
VendorName "Monitor Vendor"
ModelName "Monitor Model"
EndSection
Section "Device"
Identifier "Card0"
Driver "scfb"
EndSection
Section "Screen"
Identifier "Screen0"
Device "Card0"
Monitor "Monitor0"
SubSection "Display"
Viewport 0 0
Depth 1
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 4
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 8
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 15
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 16
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 24
EndSubSection
EndSection
进行这些更改并重新启动后,xorg 将以 1366x768 分辨率启动。
来自 FreeBSD维基百科
如果加速图形驱动程序不适用于您的 FreeBSD 系统,另一种方法是使用 scfb 驱动程序。在撰写本文时,这是配备带有集成显卡的 Intel Broadwell 或 Skylake 芯片组的笔记本电脑的常见选项,直到更新 intel DRM 驱动程序以包含支持。虽然 scfb 驱动程序不提供图形加速,并且缺少亮度调整和对外部显示器的支持等一些功能,但它在内置笔记本电脑显示器上运行良好,可用于简单的桌面使用,甚至播放视频。
系统必须使用新的 vt(4)(又名 Newcons)控制台,scfb 驱动程序才能工作。如果系统使用 UEFI 启动,则这是默认设置,但如果使用(传统)BIOS 模式启动,则不是默认设置。某些笔记本电脑必须使用 UEFI 模式启动,scfb 驱动程序才能工作。
免责声明:这是最简单的解决方案。显然有补丁可以使英特尔驱动程序正常工作,但它涉及编译源代码。