How do I upgrade Ubuntu to 19.10?

I am trying to update Ubuntu from 19.04 to 19.10. I use the command sudo update-manager -d. A window opens that says yes, there is a new version. I click "update", the message {[4] appears in the terminal first]}

Checking for a new Ubuntu release.

Then the message

Before updating, install all available updates for your version.

sudo apt update and sudo apt upgrade do not install anything new.

2 answers

$ sudo apt update 
$ sudo apt upgrade
$ sudo apt dist-upgrade

sudo apt autoremove

Open and edit the / etc / update-manager / release-upgrade file and make sure that the Prompt variable is set to normal

# Default behavior for the release upgrader.

[DEFAULT]
# Default prompting behavior, valid options:
#
#  never  - Never check for a new release.
#  normal - Check to see if a new release is available.  If more than one new
#           release is found, the release upgrader will attempt to upgrade to
#           the release that immediately succeeds the currently-running
#           release.
#  lts    - Check to see if a new LTS release is available.  The upgrader
#           will attempt to upgrade to the first LTS release available after
#           the currently-running one.  Note that this option should not be
#           used if the currently-running release is not itself an LTS
#           release, since in that case the upgrader won't be able to
#           determine if a newer release is available.
Prompt=normal

sudo do-release-upgrade -d

Restart-OS

 6
Author: aa.arsenenko, 2019-10-21 19:21:39

Faced the same problem. apt upgrade didn't help, i.e. it didn't update anything. Displayed a list of not updated packages with the command:

> apt list --upgradable
Вывод списка… Готово
apache2-bin/disco-updates,disco-security 2.4.38-2ubuntu2.3 amd64 [может быть обновлён с: 2.4.29-1ubuntu4.6]
plasma-vault/disco 5.15.4-0ubuntu1 amd64 [может быть обновлён с: 5.12.7-0ubuntu0.1]
url-dispatcher/disco 0.1+17.04.20170328-0ubuntu4 amd64 [может быть обновлён с: 0.1+16.04.20151110-0ubuntu2]

I tried to update manually and it turned out that the dependency with libcurl4 was broken due to the msodbcsql package:

> sudo apt install apache2-bin 
Чтение списков пакетов… Готово
Построение дерева зависимостей       
Чтение информации о состоянии… Готово
Некоторые пакеты не могут быть установлены. Возможно, то, что вы просите,
неосуществимо, или же вы используете нестабильную версию дистрибутива, где
запрошенные вами пакеты ещё не созданы или были удалены из Incoming.
Следующая информация, возможно, вам поможет:

Следующие пакеты имеют неудовлетворённые зависимости:
 apache2-bin : Зависит: libcurl4 (>= 7.16.2) но он не будет установлен
E: Невозможно исправить ошибки: у вас зафиксированы сломанные пакеты.

>sudo apt install libcurl4
Чтение списков пакетов… Готово
Построение дерева зависимостей       
Чтение информации о состоянии… Готово
Некоторые пакеты не могут быть установлены. Возможно, то, что вы просите,
неосуществимо, или же вы используете нестабильную версию дистрибутива, где
запрошенные вами пакеты ещё не созданы или были удалены из Incoming.
Следующая информация, возможно, вам поможет:

Следующие пакеты имеют неудовлетворённые зависимости:
 msodbcsql : Зависит: libcurl3 но он не будет установлен
E: Ошибка: pkgProblemResolver::Resolve привёл к появлению сломанных пакетов. Это может быть вызвано зафиксированными пакетами.

After deleting the package:

>sudo apt remove msodbcsql

All updates were installed and the release update was successful.

 2
Author: Григорий, 2019-11-21 13:27:19