web-dev-qa-db-ja.com

Ubuntu 12.04(ATI Radeon HD)でデュアルモニターが検出されない

私はUbuntuが初めてなので、Windowsをそれに置き換えたいと思っています。私が今直面している問題の1つは、2番目の画面を機能させることです。

内部Intel 2000グラフィックカードとASUS ATI Radeon HD 6570が付属するOptiplex 990があります。各グラフィックカードは1つの24インチモニターに接続されています。

USBスティックからUbuntu 12.04を起動すると、Intelモニターにブートメニューが表示されます。次に、Ubuntu ....- loading-logoが2番目のATIモニターに表示されます。その後、実際のUbuntuワークスペースが再びIntelモニターにロードされ、ATIモニターが省電力モードになります。

これを行うと私は得る:

lspci | grep VGA

00:02.0 VGA compatible controller: Intel Corporation 2nd Generation Core Processor Family Integrated Graphics Controller (rev 09)
01:00.0 VGA compatible controller: Advanced Micro Devices [AMD] nee ATI Turks [Radeon HD 6570]

enter image description here

したがって、ここに表示される画面は、Intel主導の画面のみです。 ATIのものは忘れられています。

私は彼らのウェブサイトからATIドライバーをインストールすることになりました。そして、説明されている手順を実行しました here

それをインストールした後、私はまだ次を得る:

ubuntu@ubuntu:~/Downloads$ fglrxinfo

display: :0  screen: 0
OpenGL vendor string: Tungsten Graphics, Inc
OpenGL renderer string: Mesa DRI Intel(R) Sandybridge Desktop 
OpenGL version string: 1.4 (3.0 Mesa 8.0.2)

ATI接続画面が無効になっているため、これは予期されたものです。

/etc/X11/xorg.confを見る

Section "ServerLayout"
        Identifier     "aticonfig Layout"
        Screen      0  "aticonfig-Screen[0]-0" 0 0
EndSection

Section "Module"
EndSection

Section "Monitor"
        Identifier   "aticonfig-Monitor[0]-0"
        Option      "VendorName" "ATI Proprietary Driver"
        Option      "ModelName" "Generic Autodetecting Monitor"
        Option      "DPMS" "true"
EndSection

Section "Device"
        Identifier  "aticonfig-Device[0]-0"
        Driver      "fglrx"
        BusID       "PCI:1:0:0"
EndSection

Section "Screen"
        Identifier "aticonfig-Screen[0]-0"
        Device     "aticonfig-Device[0]-0"
        Monitor    "aticonfig-Monitor[0]-0"
        DefaultDepth     24
        SubSection "Display"
                Viewport   0 0
                Depth     24
        EndSubSection
EndSection

他に何ができるかわかりません。この問題を解決するのに役立つプロがいますか?

どうもありがとう、

5
Houman

AMDソフトで2つの画面を定義する必要があります。

  1. ATIドライバーアプリケーションを開く

    enter image description here

  2. 制限なしに2つの画面表示を定義します。

    AMD settings

  3. そして再起動

4
Boris