Various issues after upgrading to 18.04

Hi everyone.

I’ve been having a number of issues after upgrading to 18.04.

The new lightdm slick greeter wasn’t even installed initially. I had to install it myself by purging all greeter from 16.04 and then installing the new slick greeter. I don’t think the config tool is installed either.

I’m also lacking a majority of the panel layouts. I’ve only got openSuse and GNOME2 present in the Mate Tweak tool.

My sources.list file didn’t update either. I’ve created a backup of my old sources.list file, deleted it, and generated a new one by ticking some boxes in Software & Updates.

This is currently the entirety of my sources.list file:

deb http://security.ubuntu.com/ubuntu/ bionic-security main universe
deb http://archive.ubuntu.com/ubuntu bionic-updates main universe
deb http://archive.ubuntu.com/ubuntu bionic main universe

Are there any steps I can take to ensure that I’ve actually got the latest packages installed on my system?

To add to this, some of the panel widgets aren’t working, e.g the TopMenu panel applet doesn’t appear when added and ends up crashing upon maximising a window.

1 Like

This does not look well but you can try the following.

First, edit your sources.list:

sudo pluma /etc/apt/sources.list

and replace all its content by the following:

# See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to
# newer versions of the distribution.
deb http://archive.ubuntu.com/ubuntu/ bionic main restricted
# deb-src http://archive.ubuntu.com/ubuntu/ bionic main restricted

## Major bug fix updates produced after the final release of the
## distribution.
deb http://archive.ubuntu.com/ubuntu/ bionic-updates main restricted
# deb-src http://archive.ubuntu.com/ubuntu/ bionic-updates main restricted

## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
## team. Also, please note that software in universe WILL NOT receive any
## review or updates from the Ubuntu security team.
deb http://archive.ubuntu.com/ubuntu/ bionic universe
# deb-src http://archive.ubuntu.com/ubuntu/ bionic universe
deb http://archive.ubuntu.com/ubuntu/ bionic-updates universe
# deb-src http://archive.ubuntu.com/ubuntu/ bionic-updates universe

## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu 
## team, and may not be under a free licence. Please satisfy yourself as to 
## your rights to use the software. Also, please note that software in 
## multiverse WILL NOT receive any review or updates from the Ubuntu
## security team.
deb http://archive.ubuntu.com/ubuntu/ bionic multiverse
# deb-src http://archive.ubuntu.com/ubuntu/ bionic multiverse
deb http://archive.ubuntu.com/ubuntu/ bionic-updates multiverse
# deb-src http://archive.ubuntu.com/ubuntu/ bionic-updates multiverse

## N.B. software from this repository may not have been tested as
## extensively as that contained in the main release, although it includes
## newer versions of some applications which may provide useful features.
## Also, please note that software in backports WILL NOT receive any review
## or updates from the Ubuntu security team.
deb http://archive.ubuntu.com/ubuntu/ bionic-backports main restricted universe multiverse
# deb-src http://archive.ubuntu.com/ubuntu/ bionic-backports main restricted universe multiverse

## Uncomment the following two lines to add software from Canonical's
## 'partner' repository.
## This software is not part of Ubuntu, but is offered by Canonical and the
## respective vendors as a service to Ubuntu users.
deb http://archive.canonical.com/ubuntu bionic partner
# deb-src http://archive.canonical.com/ubuntu bionic partner

deb http://security.ubuntu.com/ubuntu bionic-security main restricted
# deb-src http://security.ubuntu.com/ubuntu bionic-security main restricted
deb http://security.ubuntu.com/ubuntu bionic-security universe
# deb-src http://security.ubuntu.com/ubuntu bionic-security universe
deb http://security.ubuntu.com/ubuntu bionic-security multiverse
# deb-src http://security.ubuntu.com/ubuntu bionic-security multiverse

Then, reload your sources and upgrade eventual packages:

sudo apt-get update && sudo apt-get dist-upgrade

and try to reinstall the desktop metapackage:

sudo apt-get install --reinstall ubuntu-mate-desktop

Does it reinstall missing packages with that last command?

1 Like

Thanks for that sources.list file, was looking for a copy of that everywhere.

Reinstalling the mate desktop seemed to do the trick. Everything seems to be installed correctly now.

I was almost tempted to do a re-install, relieved that I won’t need to do that now. Cheers!