What is the exact meaning of adding the -d
option at the end of do-release-upgrade
command? The Ubuntu documentation defines it as:
to upgrade to a development version of Ubuntu.
Once 16.04.01 is released, is there any difference in sudo do-release-upgrade -d
and sudo do-release-upgrade
?
I started my upgrade process from 14.04.05LTS to 16.04.01LTS using:
sudo do-release-upgrade -d
After starting this, I read that:
Upgrading to a development release is not recommended
Because of this I closed the terminal process doing upgrade. Now when I run sudo do-release-upgrade -d
, I am able to resume the upgrade. But if I run sudo do-release-upgrade
I am getting the message:
no new release found
How should I resume the upgrade process correctly?
grep
command with the wordtrusty
in place ofyakkety
. If you get some output, it's a good sign in this case. – Arronical Sep 12 '16 at 12:22sudo apt-get dist-upgrade
is suggested instead ofsudo do-release-upgrade
? Thank you so much for your help. – Erdnase Sep 12 '16 at 12:29apt-get dist-upgrade
was originally there when I thought you were going from 16.04 to 16.04.1. Ii is useful to use now to make sure that all of your packages for 14.04 are as up to date as possible before trying to move to 16.04.1. – Arronical Sep 12 '16 at 12:54grep -i prompt /etc/update-manager/release-upgrades
. Prompt is set us lts.Prompt=lts
. Howeverdo-release-upgrade
still showing theno new release found
message. For this part of the error, I had this particular question opened earlier [link]http://askubuntu.com/questions/820795/ubuntu-14-04-interrupted-upgrade-causing-no-new-release-found[/link] . So there is still some impact of the interrupted upgrade left on the machine which I am not able to fix. Thanks anyway for all your help. – Erdnase Sep 12 '16 at 14:04