笔记本电脑回退到 Vesa 视频驱动程序

笔记本电脑回退到 Vesa 视频驱动程序

我拥有 Dell Inspiron 15R SE (7520),并在其上安装了 Arch Linux。看来我有两个显卡,所以我安装了两个驱动程序 + Vesa 驱动程序(如果这是错误的,请原谅我)。

dagrevis@haze ~ » lspci | grep VGA
00:02.0 VGA compatible controller: Intel Corporation 3rd Gen Core processor Graphics Controller (rev 09)
01:00.0 VGA compatible controller: Advanced Micro Devices [AMD] nee ATI Cape Verde [Radeon HD 7700M Series]
dagrevis@haze ~ » pacman -Ss xf86-video | grep installed
extra/xf86-video-ati 1:7.0.0-1 (xorg-drivers xorg) [installed]
extra/xf86-video-intel 2.20.13-1 (xorg-drivers xorg) [installed]
extra/xf86-video-vesa 2.3.2-2 (xorg-drivers xorg) [installed]

当我执行时startx,它会加载,但遗憾的是,使用的是 Vesa。这是Xorg.0.log

为什么?我该如何修复它?谢谢!

PS 我很乐意只使用 Intel 卡,根本不接触 ATI。

答案1

在对日志文件进行了更深入的阅读后,我执行了:sudo pacman -S xf86-video-modesetting xf86-video-fbdev并安装了缺少的软件包。然后,我删除了 Vesa 和 ATI 驱动程序:sudo pacman -R xf86-video-vesa xf86-video-ati这似乎成功了 — 我正在使用 Intel 驱动程序。 :)

相关内容