[Ubuntu] DellのノートPCにUbuntuをインストールして、液晶を閉じると、開いたときに画面が固まる。

環境

この問題は、Dell Latitude x300, Ubuntu Linux 7.10で確認しました。

問題の現象

液晶を閉じてから開くと、画面が固まります。

解決策

ビデオカードのドライバをvesaに変更します。具体的には、/etc/X11/xorg.confを以下のように変更します。

$ diff -u /etc/X11/xorg.conf.orig /etc/X11/xorg.conf
--- /etc/X11/xorg.conf.orig     2008-04-09 21:31:25.000000000 +0900
+++ /etc/X11/xorg.conf  2008-04-10 07:34:50.000000000 +0900
@@ -77,6 +77,11 @@
        BusID           "PCI:0:2:0"
 EndSection
 
+Section "Device"
+       Identifier      "Videocard0"
+       Driver          "vesa"
+EndSection
+
 Section "Monitor"
        Identifier      "Generic Monitor"
        Option          "DPMS"
@@ -86,7 +91,7 @@
 
 Section "Screen"
        Identifier      "Default Screen"
-       Device          "Intel Corporation 82852/855GM Integrated Graphics Device"
+       Device          "Videocard0"
        Monitor         "Generic Monitor"
        DefaultDepth    24
 EndSection

参考文献