0

First backup after upgrading to 20.04: when I try to start my backup, it asks me to install gvfs-backends. When accept to proceed with the installation, I obtain the following error:

The following packages have unmet dependencies:
gvfs-backends: Depends: libsmbclient (>= 2:4.10.0+dfsg) but 2:4.7.6+dfsg~ubuntu-0ubuntu2.20 is to be installed
Alberto
  • 345
  • 2
    I think you somehow messed up your package sources lists. 2:4.7.6 is the current version for 18.04. 20.04 has 2:4.11.6. Use apt policy libsmbclient to check which sources are used. Or see here how to restore the default sources if you cannot fix it. – pLumo Nov 11 '20 at 10:06

1 Answers1

1

Update + Solution

As suggested by pLumo in the comments my /etc/apt/sources.list was quite messed up: it was still using the old version for Ubuntu 18.04 (2:4.7.6). Therefore I have followed these instructions to regenerate a new sources.list (which for Ubuntu 20.04 can be found here).

Alberto
  • 345