is it safe to install elementary OS DE Pantheon on Ubuntu 15.04 without doing any damage to the system? if so how?
Asked
Active
Viewed 1.2k times
2 Answers
1
Okay, for this answer, I'll follow the advice of Guss who managed to successfully install pantheon on Ubuntu 15.04.
- First of all, rebuild
ubuntu-extras-keyringlocally following these commands:
mkdir ubuntu-keyring && cd ubuntu-keyring
sudo apt-get install -y debhelper
wget http://archive.ubuntu.com/ubuntu/pool/main/u/ubuntu-extras-keyring/ubuntu-extras-keyring_2010.09.27.{tar.gz,dsc}
tar -xf *.tar.gz
cd ubuntu-extras-keyring-2010.09.17
debuild -i -us -uc -b
sudo dpkg -i ../ubuntu-extras-keyring_2010.09.27_all.deb
- Guss then goes on to mention: "After that, elementary-desktop will install, but will error out at the end because it depends on
systemd-shimwhich is no longer needed nor wanted with 15.04 having a full SystemD implementation. " --------- Once you get this error, do the following:
sudo dpkg --force-depends -r indicator-datetime sudo apt-get purge unity-control-center unity-control-center-signon
Pantheon should now be installed on your system.
-1
Add repository
sudo add-apt-repository ppa:elementary-os/daily
Update and install
sudo apt-get update
sudo apt-get install elementary-desktop
Thats it, now log out and on the login page, the Pantheon desktop should be visible in the list of desktop environments.
Maythux
- 87,123