Debian Wheezy デュアルモニタの問題

Debian Wheezy デュアルモニタの問題

新しいノートブックにDebian wheezyとXFCE 4.8をインストールし、カーネルをバックポートから3.13にアップデートしました。

ノートパソコンをモニターに接続すると、解像度が非常に低く、モニターに画面の一部しか表示されません。以前のノートブックでは、XFCEディスプレイ設定またはARandRを使用して問題を解決しましたが、新しいモニターが正常に動作しても新しいモニターを検出できなくなりました。

排他ドライバーをインストールしていません。 xorg.confはありません。これはxrandrの出力です:

xrandr: Failed to get size of gamma for output default
Screen 0: minimum 1920 x 1080, current 1920 x 1080, maximum 1920 x 1080
default connected 1920x1080+0+0 0mm x 0mm
   1920x1080       0.0* 

lspciの関連出力は次のとおりです。

00:02.0 VGA compatible controller: Intel Corporation Haswell Integrated Graphics Controller (rev 06)
01:00.0 3D controller: NVIDIA Corporation Device 1292 (rev a1)

ベストアンサー1

Nvidiaグラフィックドライバをインストールすることをお勧めします。

  1. 「contrib」および「non-free」コンポーネントを次に追加します/etc/apt/sources.list

    deb http://http.debian.net/debian/ wheezy main contrib non-free
    
  2. 利用可能なパッケージのリストを更新し、適切なLinuxヘッダーとカーネルモジュールパッケージをインストールします。

    $ aptitude update
    $ aptitude -r install linux-headers-$(uname -r|sed 's,[^-]*-[^-]*-,,') nvidia-kernel-dkms
    

追加情報:https://wiki.debian.org/NvidiaGraphicsDrivers

おすすめ記事