Debian etch インストール 続き

先日の 2006/11/21 Debian etch インストールの続き。


/etc/X11/xorg.conf の Device セクションを見るとVGAの出力先が違うっぽい。

Section "Device"
        Identifier      "Intel Corporation 82810 CGC [Chipset Graphics Controller]"
        Driver          "i810"
        BusID           "PCI:0:1:0"
EndSection

Section "Screen"
        Identifier      "Default Screen"
        Device          "Intel Corporation 82810 CGC [Chipset Graphics Controller]"
        Monitor         "L350"
        DefaultDepth    24
                :

lspci で正しいグラフィックボードの名前を調べ、ドライバー名をググった。
さらに /var/log/Xorg.0.log から正しいグラフィックボードの BusID を調べ、/etc/X11/xorg.conf の中身を書き換えて再起動。

Section "Device"
        Identifier     "Matrox Graphic, Inc. MGA 2064W [Millennium]"
        Driver          "mga"
        BusID           "PCI:1:10:0"
EndSection

Section "Screen"
        Identifier      "Default Screen"
        Device          "Matrox Graphic, Inc. MGA 2064W [Millennium]"
        Monitor         "L350"
        DefaultDepth    24
                :

以上で、無事に X が立ち上がるようになった。