With the new release of Karmic at hand, there are bound to be instances where problems with video drivers prevent KDE from starting properly. This usually results in a blank/black screen after logging in. The solution to the problem is to install and configure the proper video drivers for your system. However, there is a temporary fix that may get you to a useable desktop. By default, KDE installs with compositing turned on. "Compositing" is the special effects that make the desktop look cool, but require accelerated video drivers that the install program may not set up correctly. One way around this problem is to disable compositing. To do this, you will need to get to a text console. This may happen automatically when you try to log in, or you may have to select "Console Login" from the login screen. Once you get to the text screen, log in with your username and password. Then type the following commands:
This should get you back into kde, with no special effects. You can search this forum for help on your particular video system after that.
Edit: see here for help installing NVIDIA drivers:
http://kubuntuforums.net/forums/inde...4892#msg164892
Code:
sudo service kdm stop cd ~/.kde/share/config cp kwinrc kwinrc-backup sed -e '/Compositing/,/^$/s/Enabled=true/Enabled=false/' < kwinrc-backup > kwinrc sudo service kdm start
Edit: see here for help installing NVIDIA drivers:
http://kubuntuforums.net/forums/inde...4892#msg164892
Comment