1

I have Ubuntu 14.04. I installed Cinnamon like this:

sudo add-apt-repository ppa:lestcape/cinnamon
sudo apt-get update && sudo apt-get install cinnamon

Also tried this.

sudo add-apt-repository ppa:lestcape/cinnamon
sudo apt-get update
sudo apt-get install cinnamon

All finished ok, but there was no result after reboot. Why?

terdon
  • 100,812
  • Did you choose the cinnamon session when you logged in? – terdon Jun 22 '15 at 14:20
  • @terdon, there is no cinnamon session... – Arthur Kharkivskiy Jun 22 '15 at 14:39
  • 1
    You really not provide any helpful information. Is difficult be a magician to know what really happen in an open problem like this. Please, start the Unity desktop. Open a terminal and execute "cinnamon --restart" without quote. If cinnamon can start, your problem will be related with your display manager (lightdm), if not you will get the error. With an error, we can have an idea of what is happened. – lestcape Jun 23 '15 at 04:20
  • The PPA in question doesn't exist any longer. VTC as not reproducible. – David Foerster Jan 21 '17 at 15:30

1 Answers1

0

If you see no "Cinnamon" option after rebooting, that probably means you didn't install a cinnamon session. The simplest fix would probably be to install the full desktop environment:

sudo apt-get install cinnamon-desktop-environment

That will, however, bring in various other packages you might not want. I can't test this at the moment, but it might be enough to just install

sudo apt-get install cinnamon-session

The package names might be slightly different. To see what you have available, run

apt-cache search '^cinnamon'
terdon
  • 100,812
  • I think it will help! Thx! But I googled for a repository with cinnamon-desktop-environment. But all of them had no cinnamon-desktop-environment. Could you give me a name of a good repository for this? – Arthur Kharkivskiy Jun 22 '15 at 15:06
  • @ArthurKharkivskiy sorry, no idea, I don't use Ubuntu. Isn't it in the normal repos? If not, you could always use Mint's repo or just download the deb. – terdon Jun 22 '15 at 15:08
  • How about this: http://askubuntu.com/questions/94201/how-do-i-install-the-cinnamon-desktop ? – Cristiana Nicolae Jun 26 '16 at 20:12