2

When I run sudo apt-get update I get this error with many packages:

Omitiendo el uso del fichero configurado «main/binary-1386/Packages»
  ya que el repositorio «http : //bo.archive.ubuntu.com/ubuntu xenial-backports InRelease»
  no admite la arquitectura «1386»

I think the problem started when I tried to install Skype and one step was:

sudo dpkg --add-architecture i386

That gave me this result

Odd number of elements in hash assignment at /usr/share/pkg-config-dpkghook line 30.

I used this How to install Skype on Ubuntu 16.04 Xenial Xerus Linux 64-bit | LinuxConfig.org

I'm using Ubuntu 16.04 LTS 64-bit

How can I fix this problem?

This is what appears when I put sudo apt-get update or sudo apt-get update --fix-missing

Zanna
  • 70,465

1 Answers1

3

Didn't you just misread/mistype the command and added an "1386" architecture instead of an "i386"? If so you should be able to remove that architecture with

sudo sudo dpkg --remove-architecture 1386

and then add the proper i386 architecture:

sudo sudo dpkg --add-architecture i386

(this architecture is possibly already there anyway)

xenoid
  • 5,504