The update from Ubuntu 13.10 to 14.04 LTS does not work it keeps showing me an error as could not calculate the upgrade, even when I want it to get updated from the terminal it says the same error. I did not use the beta its the final Ubuntu 14.04 LTS.I have restarted my laptop for like 5-10 times no change. Disabling the software sources also does not help.
Asked
Active
Viewed 5,925 times
5

Braiam
- 67,791
- 32
- 179
- 269

user267364
- 81
- 1
- 6
1 Answers
2
I have solved the same problem running
sudo apt-get remove libaccount-plugin-google
How I have found this? I have checked the last error from my "/var/log/dist-upgrade/apt.log" and it was related to unmet dependency of libaccount-plugin-google
I have no idea if this works for you also. gl&hf

BlackJohnny
- 111
- 2
sudo -s
; Then:apt-get update; apt-get dist-upgrade; do-release-upgrade -d; exit
– mini Apr 18 '14 at 09:10do-release-upgrade
have the-d
option? I thought that was just for developer releases. – mudri Apr 18 '14 at 10:36sudo apt-get dist-upgrade
doesn't do much on its own. It just finishes with0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
. – mudri Apr 18 '14 at 11:14