Показать статистику
0 голосов
от (1.7тыс. баллов)

Всем привет, использую Ubuntu Linux с версии 12.04 и мне эта система очень нравится. Сейчас у меня установлена 18.04 и я хочу обновиться на 19 версию. Однако, каждый раз при попытке накатить апдейты, вылазит ошибка: 

Failed to download repository information

Я использую такую команду для обновления: 

update-manager -d

После выполнение этой команды, в терминале - ругня: 

/usr/bin/update-manager:28: PyGIWarning: Gtk was imported without specifying a version first. Use gi.require_version('Gtk', '3.0') before import to ensure that the right version gets loaded.
  from gi.repository import Gtk
/usr/lib/python3/dist-packages/UpdateManager/UnitySupport.py:29: PyGIWarning: Dbusmenu was imported without specifying a version first. Use gi.require_version('Dbusmenu', '0.4') before import to ensure that the right version gets loaded.
  from gi.repository import Dbusmenu, Unity
/usr/lib/python3/dist-packages/UpdateManager/UnitySupport.py:29: PyGIWarning: Unity was imported without specifying a version first. Use gi.require_version('Unity', '7.0') before import to ensure that the right version gets loaded.
  from gi.repository import Dbusmenu, Unity

Если я выполняю sudo apt update, то вижу другое: 

Get:1 security.ubuntu.com/ubuntu xenial-security InRelease [92.2 kB] 
Hit:2 ppa.launchpad.net/dhor/myway/ubuntu xenial InRelease 
Hit:3 gb.archive.ubuntu.com/ubuntu xenial InRelease 
Get:4 gb.archive.ubuntu.com/ubuntu xenial-updates InRelease [92.2 kB] 
Ign:5 ppa.launchpad.net/mscore-ubuntu/mscore-stable/ubuntu xenial InRelease 
Hit:6 ppa.launchpad.net/noobslab/apps/ubuntu xenial InRelease 
Hit:7 ppa.launchpad.net/rebuntu16/avidemux+unofficial/ubuntu xenial InRelease 
Hit:8 gb.archive.ubuntu.com/ubuntu xenial-backports InRelease 
Ign:9 ppa.launchpad.net/stebbins/handbrake-releases/ubuntu xenial InRelease 
Hit:10 ppa.launchpad.net/webupd8team/tor-browser/ubuntu xenial InRelease 
Err:11 ppa.launchpad.net/mscore-ubuntu/mscore-stable/ubuntu xenial Release 404 Not Found
Err:12 ppa.launchpad.net/stebbins/handbrake-releases/ubuntu xenial Release 404 Not Found Reading package lists... Done 
E: The repository 'ppa.launchpad.net/mscore-ubuntu/mscore-stable/ubuntu xenial Release' does not have a Release file. 
N: Updating from such a repository can't be done securely, and is therefore disabled by default. 
N: See apt-secure(8) manpage for repository creation and user configuration details.
E: The repository 'ppa.launchpad.net/stebbins/handbrake-releases/ubuntu xenial Release' does not have a Release file. 
N: Updating from such a repository can't be done securely, and is therefore disabled by default. 
N: See apt-secure(8) manpage for repository creation and user configuration details.

Кто может подсказать что я делаю не так? Как обновиться на 19-ю версию Ubuntu?

423 просмотров 1 ответов

1 Ответ

0 голосов
от (17.4тыс. баллов)

Вы неправильно обновляетесь. Все что вам нужно - это три команды: 

sudo apt-get update
sudo apt-get upgrade
sudo apt-get dist-upgrade
...