使用Nvidia vga卡由10.04升級到10.10後,開機的splash畫面後就無法顯示登入的畫面,直接顯示console的登入介面,解決方式為
1.修改/etc/X11/xorg.conf
1.修改/etc/X11/xorg.conf
Section "Device"
Identifier "Device0"
Driver "nvidia"
VendorName "NVIDIA Corporation"
BoardName "Quadro NVS 285"
EndSection
修改為
Section "Device"
Identifier "Device0"
Driver "nv"
VendorName "NVIDIA Corporation"
BoardName "Quadro NVS 285"
EndSection
2.移除xserver-xorg-video-nv套件
sudo apt-get remove xserver-xorg-video-nv
3.重新compile Nvidia driver
4.將xorg.conf修改回用nvidia driver
Section "Device"
2.移除xserver-xorg-video-nv套件
sudo apt-get remove xserver-xorg-video-nv
3.重新compile Nvidia driver
4.將xorg.conf修改回用nvidia driver
Section "Device"
Identifier "Device0"
Driver "nvidia"
VendorName "NVIDIA Corporation"
BoardName "Quadro NVS 285"
EndSection