Unity isn't starting on 13.10 (with Cinnamon 2.0 installed)

25,552

Solution 1

After some research it seems to be that Unity in 13.10 has serious issues if Cinnamon 2.0 is installed. I don't have a full answer yet, but I at least have some more things to try now.

OK I found an answer! Unfortunately it means removing cinnamon entirely, but until it doesn't mess up unity I'll have to hold off.

sudo apt-get install ppa-purge
sudo apt-get purge --auto-remove cinnamon
sudo apt-get autoremove
sudo apt-get update -f
sudo apt-get dist-upgrade
sudo apt-get install ubuntu-desktop
sudo apt-get remove .*cinnamon.*
sudo apt-get remove .*nemo.*

Reboot and everything should be working! It's likely that not all of these steps are needed, but that's what I did to resolve the issue.

Solution 2

FIX :

Start ubuntu and login

now in the blackscreen go to the terminal :

ctrl-alt-f1

type

nautilus  

and enter, error? no problem........ now type

unity   

and enter error? np now without exiting or stoping the unity comand return to the ubuntu interface
in my pc is ctrl-alt-f7 , then now you can open terminal:

ctrl-aLT-t

and type

nautilus

nautilus will open ( DO NOT CLOSE NAUTILUS ), now open another terminal without closing nautilus terminal, and type

sudo software-properties-gtk

search for graphic drivers .... my problem was the default drivers of X.org

I have an ati video card and I installed the drivers of fglrx-updates if you have nvidia install the drivers of nvidia or if you have ati install the one that i installed, then reboot

after login u will see nautilus running well and the wallpaper the only thing not working is unity...

open terminal and type:

dconf reset -f /org/compiz/
setsid unity

thats it.

I hope this fix your problem.

Share:
25,552

Related videos on Youtube

Sam Pearman
Author by

Sam Pearman

Updated on September 18, 2022

Comments

  • Sam Pearman
    Sam Pearman almost 2 years

    Since upgrading to 13.10, I can't log in to unity desktop. Light dm works correctly, but attempting to log in tries to start the session then drops back to light. I've already dropped to terminal (ctrl+alt+f2) and done this:

    sudo apt-get update
    
    sudo apt-get install --reinstall ubuntu-desktop
    
    sudo apt-get install unity
    

    Logging in as a guest session also fails. Logging in to other window managers works with varying degrees of success.

    Note: I have Cinnamon 2.0 installed from PPA.

    I'm using a 2 monitor setup.

    Also of note is that the session prior to my upgrade to 13.10 the background of unity failed to display at all, instead showing what was there in the screen buffer from the previous frame. The entire OS worked correctly otherwise though, so I just ignored it for the session. No other upgrades or even updates were done prior to this occurring.

    My upgrade path to 13.10 was basically this: Install 13.04 alongside Windows 7, use ubuntu as a glorified web browser for a while, get updates (in preparation for 13.10), install 13.10.

    I also used Unity Tweak Tool to change some aspects of unity, particularly auto-hide.

    Any help or ideas would be appreciated, as I'm typing this on my phone :(

    • Sam Pearman
      Sam Pearman over 10 years
      More information: Enlightenment doesn't work at all, drops back to light on login. Cinnamon seems to be working fine, but was throwing up errors relating to ubuntu-desktop the first time I started it. Doesn't seem to be doing that now. Gnome also seems OK as far as I can tell. No, actually, gnome also can't display a background, instead showing whatever was there on the previous frame.
    • Sam Pearman
      Sam Pearman over 10 years
      failed to load session "ubuntu" That's the error I receive when trying to log in. I managed to see it for long enough to read it by creating a new user account and trying to log in with that.
    • KoRnKloWn
      KoRnKloWn over 10 years
      I'm actually having this exact same issue, I know with me I can access other sessions, I had Cinnamon installed because I use Nemo, and I am using that for now. I also noticed that gnome-session-flashback was installed with the upgrade and that worked as well, just not Unity.
    • guntbert
      guntbert over 10 years
      The best way to add additional information to your question is by editing it, with the edit button. It is better visible that way, and comments are mainly for secondary, temporary purposes. Comments are removed under a variety of circumstances. Anything important to your question should be in the question itself.
  • Sam Pearman
    Sam Pearman over 10 years
    OK, I did: sudo apt-get install ppa-purge sudo apt-get purge --auto-remove cinnamon sudo apt-get autoremove sudo apt-get update -f sudo apt-get dist-upgrade sudo apt-get install ubuntu-desktop which has removed Cinnamon, and now when I'm using Gnome Flashback the background renders correctly. Unity still not working though.
  • Sam Pearman
    Sam Pearman over 10 years
    Success! I examined a bit further using synaptic and found that some of the cinnamon packages were local. After looking at which ones they were, I came up with a simple regex to finish them off. sudo apt-get remove .*cinnamon.* sudo apt-get remove .*nemo.* (There was actually only one nemo package left for me though) One reboot later and I was able to start Unity without a hitch! I'll update the answer above.
  • Stefano
    Stefano over 10 years
    I have also Cinnamon installed and Unity does not work... but unluckily my wife is using it on the same PC, so I can't remove it... I hope someone will fix it...
  • Rafid
    Rafid over 10 years
    Worked for me! Not really sure how Cinnamon could stop Unity working!
  • Csabi Vidó
    Csabi Vidó over 10 years
    Please shorten the package list, it's overly specific with version information and might remove packages also used by other packages. Removing just the right ones and catching the others with autoremove is the better way.