1

Guest Logged in working fine...But When i do logging with my user account..logged in gets successful but after logged in ..nothing appears on desktop except wallpaper of ubuntu. Facing this problem from so many days.

2 Answers2

1

Open your terminal or login into tty2 (by pressing Ctrl+Alt+F2) and go to home folder by using command cd ~ .

Delete files with the command rm as shown bellow. Exit tty2 by pressing Ctrl+Alt+F7, and re-login. This should solve desktop problem when you relogin, since those files will be recreated with new configuration.

rm -rf .compiz .config .gconf .gnome .gnome2 .kde .gvfs .local  
Sergiy Kolodyazhnyy
  • 105,154
  • 20
  • 279
  • 497
PKumar
  • 2,952
0

From the login screen you can select different windows managers. Try different windows managers till you get one that works.

Also, you can install windows managers at the command line. For example
sudo apt-get install ubuntu-desktop sudo apt-get install gdm ...

Nuke and pave is always an option. Reinstall Ubuntu using the "partition it manually" option and make sure you don't format the linux partition (don't format anything). There's always a little risk when doing this but you should be able to have a working dual boot again without trouble.

Make sure to mount your windows partion somewhere (/windows) so that grub knows you have a dual boot situation.

Jason
  • 583