图形问题 debian jessie

图形问题 debian jessie

我的笔记本电脑存在一些图形问题,分辨率低,并且无法连接其他 VGA 显示器。

root@random:~# lspci -nn | grep VGA
00:02.0 VGA compatible controller [0300]: Intel Corporation 3rd Gen Core processor Graphics Controller [8086:0166] (rev 09)
01:00.0 VGA compatible controller [0300]: NVIDIA Corporation GF108M [GeForce GT 630M] [10de:0de9] (rev a1)
root@random:~# 

root@random:~# lshw -c video | grep configuration 
       configuration: driver=nouveau latency=0
       configuration: driver=i915 latency=0


root@random:~# cat /etc/X11/xorg.conf
Section "ServerLayout"
    Identifier     "Layout0"
    Screen      0  "Screen0" 0 0
    InputDevice    "Keyboard0" "CoreKeyboard"
    InputDevice    "Mouse0" "CorePointer"
EndSection

Section "Files"
EndSection

Section "InputDevice"

    # generated from default
    Identifier     "Mouse0"
    Driver         "mouse"
    Option         "Protocol" "auto"
    Option         "Device" "/dev/psaux"
    Option         "Emulate3Buttons" "no"
    Option         "ZAxisMapping" "4 5"
EndSection

Section "InputDevice"

    # generated from default
    Identifier     "Keyboard0"
    Driver         "kbd"
EndSection

Section "Monitor"
    Identifier     "Monitor0"
    VendorName     "Unknown"
    ModelName      "Unknown"
    HorizSync       28.0 - 33.0
    VertRefresh     43.0 - 72.0
    Option         "DPMS"
EndSection

Section "Screen"
    Identifier     "Screen0"
    Device         "Device0"
    Monitor        "Monitor0"
    DefaultDepth    24
    SubSection     "Display"
        Depth       24
    EndSubSection
EndSection

有可能 xorg.conf 某个地方有错误吗?

random@random:~$ xrandr -q
Screen 0: minimum 320 x 200, current 1366 x 768, maximum 8192 x 8192
XWAYLAND0 connected 1360x768+0+0 340mm x 190mm
   [email protected]   0.00*+

root@random:~# uname -a
Linux random 3.16.0-4-amd64 #1 SMP Debian 3.16.7-ckt11-1 (2015-05-24) x86_64 GNU/Linux

提前致谢。

答案1

如果您不介意使用专有软件,我建议您使用 Nvidia 为 GNU/Linux 提供的驱动程序。它们通常与 Windows 上的驱动程序相当。

不久前,我尝试在 MacBook Pro 上使用 nouveau,但遇到了很多问题(闪烁和其他图形伪影)。我最终放弃了,转而使用 Nvidia 驱动程序。

相关内容