1

Software updater tells me I can do the upgrade, when I do it, at stage "installing upgrades", I get:

Failed to fetch http://fr.archive.ubuntu.com/ubuntu/pool/main/n/nmap/nmap-common_7.70+dfsg1-6_all.deb 403  Forbidden [IP: 194.158.119.186 80]

I tried:

sudo apt-get clean
sudo apt-get update
sudo apt-get dist-upgrade

It stays there is nothing to upgrade

I also tried solution from this post, but it didnt work.

What can I do ?

meskobalazs
  • 2,913

1 Answers1

1

nmap is actually and application that is not installed by default, so it should be safe to remove it before upgrading your distro of Ubuntu.

sudo apt remove nmap

After you run through the upgrade you should be able to reinstall nmap later by running

sudo apt install nmap

Hope this helps!

Terrance
  • 41,612
  • 7
  • 124
  • 183