Xineramaの誤動作 - 間違った画面にドラッグ

Xineramaの誤動作 - 間違った画面にドラッグ

私は新しいDebianワークステーションをセットアップしています。私は3つの画面を実行するAMD HD 7870を使用しています。 3つの画面をすべて正しく表示するのに時間がかかりました。最初のステップはfglrxドライバ(ここで述べたように)。

現在、私のモニターは私が望む方法で配置されており、解決する必要がある問題は2つだけです。

1) 基本モニターを変更できないようです。 xorg.confのモニタセクションに「デフォルト」フラグを追加する方法についてのフォーラム投稿を見ましたが、うまくいかないようです。私はこれで買うことができますが、それを修正する方法を探したいと思います。

2)より大きな問題 - マウスがどの画面にあるのか混乱しているようです。ウィンドウのメニューバーをクリックすると、すぐに画面の右端に移動します。目的の位置に移動できる唯一の方法は、Altキーを押しながらクリックしてドラッグすることです。定期的にクリックしてドラッグすると、毎回右からドラッグすることを意味します。なぜなら、クリックして移動するとすぐに右に移動するからです。

他に関連する奇妙な点 - ファイルマネージャからファイルをドラッグアンドドロップしようとしましたが、別の画面で2番目のウィンドウを開くまでどこにも行きませんでした。ドラッグアンドドロップしたファイルは別の画面に表示され、マウスはまだ最初の画面にありますが、2番目のウィンドウに配置した場所に配置されます。

Xineramaを無効にすると、これらの問題は消えます。問題は、Xineramaを無効にすると、3つの画面のうち2つが完全に白く表示され、アプリをドラッグアンドドロップできず、ある程度役に立たなくなることです。

これについて考えをお持ちの方なら本当にありがとうございます。以下は私のxorg.confファイルです。他に必要なものがあれば教えてください。よろしくお願いします。

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

Section "Module"
EndSection

Section "ServerFlags"
    Option      "Xinerama" "on"
EndSection

Section "Extensions"
    Option      "Composite" "Enable"
EndSection

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

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

Section "Monitor"
    Identifier   "aticonfig-Monitor[0]-2"
    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"
    Screen      0
EndSection

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

Section "Device"
    Identifier  "aticonfig-Device[0]-2"
    Driver      "fglrx"
    BusID       "PCI:1:0:0"
    Screen      2
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
                Modes "1920x1080_60.00"
    EndSubSection
EndSection

Section "Screen"
    Identifier "aticonfig-Screen[0]-1"
    Device     "aticonfig-Device[0]-1"
    Monitor    "aticonfig-Monitor[0]-1"
    DefaultDepth     24
    SubSection "Display"
        Viewport   0 0
        Depth     24
                Modes "1920x1080_60.00"
    EndSubSection
EndSection

Section "Screen"
    Identifier "aticonfig-Screen[0]-2"
    Device     "aticonfig-Device[0]-2"
    Monitor    "aticonfig-Monitor[0]-2"
    DefaultDepth     24
    SubSection "Display"
        Viewport   0 0
        Depth     24
                Modes "1920x1080_60.00"
    EndSubSection
EndSection

ベストアンサー1

「拡張」セクションオプション「複合」「有効化」 EndSection

これはあなたの問題です - > XINERAMAは3D効果で動作しません。 compiz エフェクトを削除すると、xinerama は基本的にはうまく機能します。

おすすめ記事