Xubuntu 16.04 扩展显示器,带 ATI / AMD radeon

Xubuntu 16.04 扩展显示器,带 ATI / AMD radeon

我最近将我的 Xubuntu 系统更新到了 16.04,现在我不能再将我的第二个显示器用作扩展屏幕了。所以目前它只是镜像屏幕。我知道 16.04 不支持 fglrx,并且使用 radeon 驱动程序。

我的显卡是 AMD Cedar 参见lspci | grep VGA

01:00.0 VGA compatible controller: Advanced Micro Devices, Inc. [AMD/ATI] Cedar [Radeon HD 5000/6000/7350/8350 Series]

因此我必须创建 xorg 文件并在 /usr/share/X11/xorg.config.d/ 中配置这些文件

这是我的10-monitors.conf

Section "Monitor"
  Identifier    "DVI"
  Option        "ModelName" "Generic Autodetecting Monitor"
  Option        "DPMS" "true"
  Option        "PreferredMode" "1280x1024"
  Option        "TargetRefresh" "60"
  Option        "Rotate" "normal"
  Option        "Disable" "false"
EndSection

Section "Monitor"
  Identifier    "VGA"
  Option        "DPMS" "true"
  Option            "PreferredMode" "1280x1024" # neu hinzugefügt
  HorizSync       30-81
  VertRefresh   56-75
EndSection

Section "Screen"
  Identifier    "Screen-DVI"
  Device        "Card0"
  Monitor           "DVI"
EndSection

Section "Screen"
  Identifier    "Screen-VGA"
  Device        "Card1"
  Monitor           "VGA"
EndSection

这里是20-radeon.conf

Section "Device"
  Identifier  "Card0"
  Driver      "radeon"
  BusID       "PCI:1:0:0"
  Screen        0
EndSection

Section "Device"
  Identifier  "Card1"
  Driver      "radeon"
  BusID       "PCI:1:0:0"
  Screen        1
EndSection

和服务器布局90-serverlayouts.config

Section "ServerLayout"
  Identifier     "Extended Monitor" 
  Screen         0 "Screen-DVI"
  Screen         1 "Screen-VGA" RightOf "Screen-DVI"
EndSection

有人可以给我提示吗?

谢谢!

编辑:更新了配置文件。

答案1

我找到了该问题的解决方案。由于 Distribution-Upgrade fglrx 仍处于安装状态。因此删除了这些软件包并重新安装了 radeon 驱动程序,然后删除了 xorg.conf 文件:

sudo apt-get remove fglrx* --purge
sudo apt-get install --reinstall libgl1-mesa-glx libgl1-mesa-dri xserver-xorg-video-radeon xserver-xorg-core

现在它起作用了...

相关内容