À partir d'aujourd'hui, je ne peux plus effectuer de mises à jour sur mon ordinateur de bureau Ubuntu 16.10. Lorsque j'essaie d'exécuter des commandes telles que Sudo apt-get update
, il est indiqué:
Building dependency tree
Reading state information... Done
You might want to run 'apt-get -f install' to correct these.
The following packages have unmet dependencies:
libsnmp30:i386 : Depends: libperl5.22:i386 (>= 5.22.1) but it is not installed
E: Unmet dependencies. Try using -f.
Quand j'essaye de lancer Sudo apt-get install -f
, il dit:
Get:1 http://archive.ubuntu.com/ubuntu yakkety/main i386 libperl5.22 i386 5.22.2-3 [3,028 kB]
Fetched 3,028 kB in 0s (34.5 MB/s)
(Reading database ... 336306 files and directories currently installed.)
Preparing to unpack .../libperl5.22_5.22.2-3_i386.deb ...
Unpacking libperl5.22:i386 (5.22.2-3) ...
dpkg: error processing archive /var/cache/apt/archives/libperl5.22_5.22.2-3_i386.deb (--unpack):
trying to overwrite shared '/usr/share/doc/libperl5.22/changelog.Debian.gz', which is different from other instances of package libperl5.22:i386
Errors were encountered while processing:
/var/cache/apt/archives/libperl5.22_5.22.2-3_i386.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)
Quelqu'un sait le truc pour résoudre ce problème? Je ne sais pas pourquoi j'aurais un paquet i386, puisqu'il s'agit d'une installation 64 bits:
Linux loup 4.8.0-34-generic #36-Ubuntu SMP Wed Dec 21 17:24:18 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux
Le commentaire n ° 3 de https://bugs.launchpad.net/ubuntu/+source/Perl/+bug/1574351 avait cette solution de contournement qui fonctionnait parfaitement pour moi:
Sudo rm /usr/share/doc/libperl5.22/changelog.Debian.gz
Sudo apt-get install -f
Merci, Reuben Firmin, qui que tu sois!